From cdd37be4321104b13eb9ecb8c029b474404848fa Mon Sep 17 00:00:00 2001 From: catmando Date: Tue, 19 Jan 2021 16:07:28 -0500 Subject: [PATCH 1/9] got specs to run nicely from rake --- Rakefile | 14 +++++++++++++- spec/spec_helper.rb | 1 + 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 759f5eb3..d9ab5089 100644 --- a/Rakefile +++ b/Rakefile @@ -2,7 +2,19 @@ require 'bundler' Bundler.require require 'opal/rspec/rake_task' + +# Must set the runner to chrome as after all we need a browser to test +# this stuff. + +ENV['RUNNER'] = 'chrome' + +# this is specified here rather than in spec helper as +# setting the format will cause problems when running in the +# browser (i.e. via rackup) + +ENV['SPEC_OPTS'] = '--format documentation' + Opal::RSpec::RakeTask.new(:default) do |_, task| task.default_path = 'spec' task.pattern = 'spec/**/*_spec.{rb,opal}' -end \ No newline at end of file +end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 10b19c09..0a4c68d2 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -31,4 +31,5 @@ def html(html_string='') RSpec.configure do |config| config.extend HtmlHelper + #config.formatter = :doc end From 5ef74e7fcffe16f3c3772bf9ee02c5dc5084b6e7 Mon Sep 17 00:00:00 2001 From: catmando Date: Wed, 20 Jan 2021 11:57:17 -0500 Subject: [PATCH 2/9] all specs passing but those requiring server are excluded --- Rakefile | 8 ++++++-- opal/browser/dom/element.rb | 2 +- spec/dom/element_spec.rb | 2 +- spec/exclude_requires_server.rb | 5 +++++ spec/history_spec.rb | 11 +++++++---- spec/http_spec.rb | 8 ++++---- spec/native_cached_wrapper_spec.rb | 5 ++--- spec/spec_helper.rb | 2 +- 8 files changed, 27 insertions(+), 16 deletions(-) create mode 100644 spec/exclude_requires_server.rb diff --git a/Rakefile b/Rakefile index d9ab5089..f59a93e8 100644 --- a/Rakefile +++ b/Rakefile @@ -12,9 +12,13 @@ ENV['RUNNER'] = 'chrome' # setting the format will cause problems when running in the # browser (i.e. via rackup) -ENV['SPEC_OPTS'] = '--format documentation' +# we also require the exclude_requires_server which will turn off the specs +# needing to fetch files from the server, which ATM I don't know how to implement +# within Opal spec -Opal::RSpec::RakeTask.new(:default) do |_, task| +ENV['SPEC_OPTS'] = '--format documentation --require exclude_requires_server' + +Opal::RSpec::RakeTask.new(:client_side_only) do |_, task| task.default_path = 'spec' task.pattern = 'spec/**/*_spec.{rb,opal}' end diff --git a/opal/browser/dom/element.rb b/opal/browser/dom/element.rb index a2a57d3a..e3a657f5 100644 --- a/opal/browser/dom/element.rb +++ b/opal/browser/dom/element.rb @@ -329,7 +329,7 @@ def inner_dom(&block) # FIXME: when block passing is fixed doc = document - self << Builder.new(doc, self, &block).to_a + self << Builder.new(doc, &block).to_a end # Set the inner DOM with the given node. diff --git a/spec/dom/element_spec.rb b/spec/dom/element_spec.rb index cbf8eda2..2343d0c7 100644 --- a/spec/dom/element_spec.rb +++ b/spec/dom/element_spec.rb @@ -200,7 +200,7 @@ DOM { div.shadow_item "Hello world!" }.append_to($document[:shadowtest].shadow) - + expect($document[:shadowtest].at_css(".shadow_item")).to be_nil expect($document[:shadowtest].shadow.at_css(".shadow_item").text).to be("Hello world!") end diff --git a/spec/exclude_requires_server.rb b/spec/exclude_requires_server.rb new file mode 100644 index 00000000..da3af06d --- /dev/null +++ b/spec/exclude_requires_server.rb @@ -0,0 +1,5 @@ +RSpec.configure do |config| + puts "************** required works!!!!!!! *****************" + config.filter_run_excluding requires_server: true + #config.formatter = :doc +end diff --git a/spec/history_spec.rb b/spec/history_spec.rb index e98d8296..f8293cf2 100644 --- a/spec/history_spec.rb +++ b/spec/history_spec.rb @@ -2,15 +2,18 @@ require 'browser/history' describe Browser::History do + + let(:root) { `window.location.pathname` } + describe '#current' do it 'should return the current location' do - expect($window.history.current).to eq('/') + expect($window.history.current).to eq(root) end end describe '#push' do it 'should change location' do - expect($window.history.current).to eq('/') + expect($window.history.current).to eq(root) $window.history.push('/lol') expect($window.history.current).to eq('/lol') $window.history.push('/') @@ -20,14 +23,14 @@ describe '#back' do it 'should go back once' do - expect($window.history.current).to eq('/') + expect($window.history.current).to eq(root) $window.history.push('/wut') expect($window.history.current).to eq('/wut') promise = Promise.new $window.one 'pop:state' do |e| - expect($window.history.current).to eq('/') + expect($window.history.current).to eq(root) promise.resolve end diff --git a/spec/http_spec.rb b/spec/http_spec.rb index 88528d9a..d74644bf 100644 --- a/spec/http_spec.rb +++ b/spec/http_spec.rb @@ -16,7 +16,7 @@ end describe '.get!' do - it 'fetches a path' do + it 'fetches a path', :requires_server do expect(Browser::HTTP.get!(path).text).to eq('lol') end end @@ -31,7 +31,7 @@ end end - describe '.post!' do + describe '.post!', :requires_server do it 'sends parameters properly' do expect(Browser::HTTP.post!(path, lol: 'wut').text).to eq('ok') end @@ -52,7 +52,7 @@ end end - describe '.put!' do + describe '.put!', :requires_server do it 'sends parameters properly' do expect(Browser::HTTP.put!(path, lol: 'wut').text).to eq('ok') end @@ -68,7 +68,7 @@ end end - describe '.delete!' do + describe '.delete!', :requires_server do it 'fetches a path' do expect(Browser::HTTP.delete!(path).text).to eq('lol') end diff --git a/spec/native_cached_wrapper_spec.rb b/spec/native_cached_wrapper_spec.rb index cc3b265d..14f73d7a 100644 --- a/spec/native_cached_wrapper_spec.rb +++ b/spec/native_cached_wrapper_spec.rb @@ -34,13 +34,12 @@ def self.new(arg1, arg2, arg3) HTML - it 'supports restricted objects' do + it 'supports restricted objects', :requires_server do # Window won't be restricted expect($window.restricted?).to eq(false) # Iframe itself won't be restricted expect($document['ifr'].restricted?).to eq(false) - # But its content_window will be (due to CORS) + # But its content_window will be (due to CORS) (this only works on a real browser) expect($document['ifr'].content_window.restricted?).to eq(true) end end - diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 0a4c68d2..6b3e15b7 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -29,7 +29,7 @@ def html(html_string='') end end + RSpec.configure do |config| config.extend HtmlHelper - #config.formatter = :doc end From cb8e4a304645ddd4e9cded40178c0b88ae8357f3 Mon Sep 17 00:00:00 2001 From: catmando Date: Wed, 20 Jan 2021 17:20:07 -0500 Subject: [PATCH 3/9] all specs passing ready for cleanup --- .gitignore | 1 + Gemfile | 11 + Rakefile | 42 +- opal-browser.gemspec | 7 + spec/browser/http.rb | 9 + spec/browser/native_cached_wrapper.rb | 7 + spec/exclude_requires_server.rb | 4 +- spec/http_spec.rb | 28 +- spec/native_cached_wrapper_spec.rb | 11 +- spec/spec_helper.rb | 136 +- spec/test_app/Rakefile | 6 + .../app/assets/javascripts/application.js | 9 + .../assets/javascripts/server_rendering.js | 9 + .../app/assets/stylesheets/application.css | 14 + .../app/controllers/application_controller.rb | 13 + .../app/controllers/test_controller.rb | 19 + .../app/models/_react_public_models.rb | 2 + spec/test_app/app/models/public/address.rb | 13 + .../test_app/app/models/public/child_model.rb | 3 + spec/test_app/app/models/public/comment.rb | 25 + spec/test_app/app/models/public/test_model.rb | 5 + spec/test_app/app/models/public/todo.rb | 6 + spec/test_app/app/models/public/todo_item.rb | 36 + spec/test_app/app/models/public/user.rb | 88 + .../auto_loader_test_classa_policy.rb | 3 + .../auto_loader_test_classb_policy.rb | 3 + .../auto_loader_test_classc_policy.rb | 3 + .../auto_loader_test_classd_policy.rb | 3 + spec/test_app/app/views/components.rb | 11 + .../app/views/components/say_hello.rb | 7 + spec/test_app/app/views/components/show.rb | 6 + .../app/views/layouts/application.html.erb | 14 + spec/test_app/bin/bundle | 3 + spec/test_app/bin/rails | 4 + spec/test_app/bin/rake | 4 + spec/test_app/bin/setup | 29 + spec/test_app/config.ru | 4 + spec/test_app/config/application.rb | 57 + spec/test_app/config/boot.rb | 6 + spec/test_app/config/environment.rb | 5 + .../config/environments/development.rb | 41 + .../config/environments/production.rb | 79 + spec/test_app/config/environments/test.rb | 46 + spec/test_app/config/initializers/assets.rb | 12 + .../initializers/backtrace_silencers.rb | 7 + .../config/initializers/cookies_serializer.rb | 3 + .../initializers/filter_parameter_logging.rb | 4 + .../config/initializers/inflections.rb | 16 + .../config/initializers/mime_types.rb | 4 + .../config/initializers/session_store.rb | 3 + .../config/initializers/synchromesh.rb | 11 + .../config/initializers/wrap_parameters.rb | 14 + spec/test_app/config/locales/en.yml | 23 + spec/test_app/config/routes.rb | 7 + spec/test_app/config/secrets.yml | 22 + spec/test_app/config/xcable.yml | 10 + spec/test_app/config/xdatabase.yml | 47 + spec/test_app/db/development.sqlite3 | Bin 0 -> 45056 bytes .../20160731182106_create_test_models.rb | 75 + spec/test_app/db/schema.rb | 88 + spec/test_app/db/seeds.rb | 7 + spec/test_app/db/test.sqlite3 | Bin 0 -> 73728 bytes spec/test_app/lib/assets/.keep | 0 spec/test_app/log/development.log | 0 spec/test_app/log/test.log | 10710 ++++++++++++++++ spec/test_app/public/404.html | 67 + spec/test_app/public/422.html | 67 + spec/test_app/public/500.html | 66 + spec/test_app/public/favicon.ico | 0 .../spec/assets/javascripts/factorial.rb | 4 + .../test_app/spec/assets/stylesheets/test.css | 4 + 71 files changed, 12041 insertions(+), 62 deletions(-) create mode 100644 spec/browser/http.rb create mode 100644 spec/browser/native_cached_wrapper.rb create mode 100644 spec/test_app/Rakefile create mode 100644 spec/test_app/app/assets/javascripts/application.js create mode 100644 spec/test_app/app/assets/javascripts/server_rendering.js create mode 100644 spec/test_app/app/assets/stylesheets/application.css create mode 100644 spec/test_app/app/controllers/application_controller.rb create mode 100644 spec/test_app/app/controllers/test_controller.rb create mode 100644 spec/test_app/app/models/_react_public_models.rb create mode 100644 spec/test_app/app/models/public/address.rb create mode 100644 spec/test_app/app/models/public/child_model.rb create mode 100644 spec/test_app/app/models/public/comment.rb create mode 100644 spec/test_app/app/models/public/test_model.rb create mode 100644 spec/test_app/app/models/public/todo.rb create mode 100644 spec/test_app/app/models/public/todo_item.rb create mode 100644 spec/test_app/app/models/public/user.rb create mode 100644 spec/test_app/app/policies/auto_loader_test_classa_policy.rb create mode 100644 spec/test_app/app/policies/auto_loader_test_classb_policy.rb create mode 100644 spec/test_app/app/policies/auto_loader_test_classc_policy.rb create mode 100644 spec/test_app/app/policies/auto_loader_test_classd_policy.rb create mode 100644 spec/test_app/app/views/components.rb create mode 100644 spec/test_app/app/views/components/say_hello.rb create mode 100644 spec/test_app/app/views/components/show.rb create mode 100644 spec/test_app/app/views/layouts/application.html.erb create mode 100644 spec/test_app/bin/bundle create mode 100644 spec/test_app/bin/rails create mode 100644 spec/test_app/bin/rake create mode 100644 spec/test_app/bin/setup create mode 100644 spec/test_app/config.ru create mode 100644 spec/test_app/config/application.rb create mode 100644 spec/test_app/config/boot.rb create mode 100644 spec/test_app/config/environment.rb create mode 100644 spec/test_app/config/environments/development.rb create mode 100644 spec/test_app/config/environments/production.rb create mode 100644 spec/test_app/config/environments/test.rb create mode 100644 spec/test_app/config/initializers/assets.rb create mode 100644 spec/test_app/config/initializers/backtrace_silencers.rb create mode 100644 spec/test_app/config/initializers/cookies_serializer.rb create mode 100644 spec/test_app/config/initializers/filter_parameter_logging.rb create mode 100644 spec/test_app/config/initializers/inflections.rb create mode 100644 spec/test_app/config/initializers/mime_types.rb create mode 100644 spec/test_app/config/initializers/session_store.rb create mode 100644 spec/test_app/config/initializers/synchromesh.rb create mode 100644 spec/test_app/config/initializers/wrap_parameters.rb create mode 100644 spec/test_app/config/locales/en.yml create mode 100644 spec/test_app/config/routes.rb create mode 100644 spec/test_app/config/secrets.yml create mode 100644 spec/test_app/config/xcable.yml create mode 100644 spec/test_app/config/xdatabase.yml create mode 100644 spec/test_app/db/development.sqlite3 create mode 100644 spec/test_app/db/migrate/20160731182106_create_test_models.rb create mode 100644 spec/test_app/db/schema.rb create mode 100644 spec/test_app/db/seeds.rb create mode 100644 spec/test_app/db/test.sqlite3 create mode 100644 spec/test_app/lib/assets/.keep create mode 100644 spec/test_app/log/development.log create mode 100644 spec/test_app/log/test.log create mode 100644 spec/test_app/public/404.html create mode 100644 spec/test_app/public/422.html create mode 100644 spec/test_app/public/500.html create mode 100644 spec/test_app/public/favicon.ico create mode 100644 spec/test_app/spec/assets/javascripts/factorial.rb create mode 100644 spec/test_app/spec/assets/stylesheets/test.css diff --git a/.gitignore b/.gitignore index 79192be1..8c43b95e 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ vendor .bundle copycat doc +spec/test_app/tmp/ diff --git a/Gemfile b/Gemfile index cfd5c90c..7e7c9775 100644 --- a/Gemfile +++ b/Gemfile @@ -16,3 +16,14 @@ gem 'rest-client', require: false # browser gem 'opal', ['>= 1.0', '< 2.0'] gem 'paggio', github: 'meh/paggio' + +# hyper-spec (for testing http requests) +git 'git://github.com/hyperstack-org/hyperstack.git', branch: 'edge', glob: 'ruby/*/*.gemspec' do + gem 'hyper-spec' + gem 'hyper-component' + gem 'hyper-store' + gem 'hyper-state' + gem 'hyperstack-config' +end + +gemspec diff --git a/Rakefile b/Rakefile index f59a93e8..8f02f992 100644 --- a/Rakefile +++ b/Rakefile @@ -1,24 +1,40 @@ +# frozen_string_literal: true + require 'bundler' Bundler.require - require 'opal/rspec/rake_task' +require 'bundler/gem_tasks' +require 'rspec/core/rake_task' -# Must set the runner to chrome as after all we need a browser to test -# this stuff. +# a few specs require a "real DOM" and/or a server response, so these +# specs are run using the hyper-spec gem. These specs are marked with +# the :js tag. -ENV['RUNNER'] = 'chrome' +# The remaining specs can be run using opal-rspec -# this is specified here rather than in spec helper as -# setting the format will cause problems when running in the -# browser (i.e. via rackup) +# All the specs will run in the browser using opal-rspec: +# just run bundle exec rackup, and browse localhost:9292 -# we also require the exclude_requires_server which will turn off the specs -# needing to fetch files from the server, which ATM I don't know how to implement -# within Opal spec - -ENV['SPEC_OPTS'] = '--format documentation --require exclude_requires_server' +RSpec::Core::RakeTask.new(:server_and_client_specs) do |t| + t.rspec_opts = '--tag js' + t.pattern = 'spec/http_spec.rb,spec/native_cached_wrapper_spec.rb' +end -Opal::RSpec::RakeTask.new(:client_side_only) do |_, task| +Opal::RSpec::RakeTask.new(:opal_rspec_runner) do |_, task| task.default_path = 'spec' task.pattern = 'spec/**/*_spec.{rb,opal}' end + +task :client_only_specs do + # Must set the runner to chrome as after all we need a browser to test + # this stuff. + # + # Also can't see how to set the format to progress and exclude the js tags + # except by setting it up via SPEC_OPTS enviroment var and a require file + sh 'RUNNER=chrome '\ + "SPEC_OPTS='--format progress --require exclude_requires_server' "\ + 'rake opal_rspec_runner' +end + +task default: %i[server_and_client_specs client_only_specs] do +end diff --git a/opal-browser.gemspec b/opal-browser.gemspec index f09bcf5a..4ada946e 100644 --- a/opal-browser.gemspec +++ b/opal-browser.gemspec @@ -18,4 +18,11 @@ Gem::Specification.new {|s| s.add_dependency 'opal', ['>= 1.0', '< 2.0'] s.add_dependency 'paggio' + + s.add_development_dependency 'hyper-spec' + s.add_development_dependency 'pry' + s.add_development_dependency 'rails', '~> 6.0' + s.add_development_dependency 'opal-rails' + s.add_development_dependency 'hyper-component' + s.add_development_dependency 'puma' } diff --git a/spec/browser/http.rb b/spec/browser/http.rb new file mode 100644 index 00000000..6d56d694 --- /dev/null +++ b/spec/browser/http.rb @@ -0,0 +1,9 @@ +# stub the Browser::HTTP class and supported? method +# for running code server side with hyper-spec +module Browser + class HTTP + def self.supported? + true + end + end +end diff --git a/spec/browser/native_cached_wrapper.rb b/spec/browser/native_cached_wrapper.rb new file mode 100644 index 00000000..1cdb7f29 --- /dev/null +++ b/spec/browser/native_cached_wrapper.rb @@ -0,0 +1,7 @@ +# stub the Browser::NativeCachedWrapper class method +# for running code server side with hyper-spec +puts 'requring the fake!!!! cached wrapper' +module Browser + module NativeCachedWrapper + end +end diff --git a/spec/exclude_requires_server.rb b/spec/exclude_requires_server.rb index da3af06d..eb4c861a 100644 --- a/spec/exclude_requires_server.rb +++ b/spec/exclude_requires_server.rb @@ -1,5 +1,3 @@ RSpec.configure do |config| - puts "************** required works!!!!!!! *****************" - config.filter_run_excluding requires_server: true - #config.formatter = :doc + config.filter_run_excluding js: true end diff --git a/spec/http_spec.rb b/spec/http_spec.rb index d74644bf..0ebe7f67 100644 --- a/spec/http_spec.rb +++ b/spec/http_spec.rb @@ -2,8 +2,10 @@ require 'browser/http' describe Browser::HTTP do - let(:path) { '/http' } - let(:path_file) { '/http-file' } + let!(:path) { '/http' } + let!(:path_file) { '/http-file' } + + # Actual requests are routed to test_app/app/test_controller.rb describe '.get' do it 'fetches a path' do @@ -16,8 +18,8 @@ end describe '.get!' do - it 'fetches a path', :requires_server do - expect(Browser::HTTP.get!(path).text).to eq('lol') + it 'fetches a path', :js do + expect { Browser::HTTP.get!(path).text }.on_client_to eq('lol') end end @@ -31,14 +33,16 @@ end end - describe '.post!', :requires_server do + describe '.post!', :js do it 'sends parameters properly' do - expect(Browser::HTTP.post!(path, lol: 'wut').text).to eq('ok') + expect { Browser::HTTP.post!(path, lol: 'wut').text }.on_client_to eq('ok') end it 'sends files properly' do - file = Browser::File.create(["content"], "yay.txt", type: "text/plain") - expect(Browser::HTTP.post!(path_file, lol: 'wut', file: file).text).to eq('ok') + expect do + file = Browser::File.create(["content"], "yay.txt", type: "text/plain") + Browser::HTTP.post!(path_file, lol: 'wut', file: file).text + end.on_client_to eq('ok') end end @@ -52,9 +56,9 @@ end end - describe '.put!', :requires_server do + describe '.put!', :js do it 'sends parameters properly' do - expect(Browser::HTTP.put!(path, lol: 'wut').text).to eq('ok') + expect { Browser::HTTP.put!(path, lol: 'wut').text }.on_client_to eq('ok') end end @@ -68,9 +72,9 @@ end end - describe '.delete!', :requires_server do + describe '.delete!', :js do it 'fetches a path' do - expect(Browser::HTTP.delete!(path).text).to eq('lol') + expect { Browser::HTTP.delete!(path).text }.on_client_to eq('lol') end end end if Browser::HTTP.supported? diff --git a/spec/native_cached_wrapper_spec.rb b/spec/native_cached_wrapper_spec.rb index 14f73d7a..b2590f51 100644 --- a/spec/native_cached_wrapper_spec.rb +++ b/spec/native_cached_wrapper_spec.rb @@ -1,4 +1,5 @@ require 'spec_helper' +require 'browser/native_cached_wrapper' describe Browser::NativeCachedWrapper do it 'deduplicates DOM objects' do @@ -34,12 +35,12 @@ def self.new(arg1, arg2, arg3) HTML - it 'supports restricted objects', :requires_server do + it 'supports restricted objects', :js do # Window won't be restricted - expect($window.restricted?).to eq(false) + expect { $window.restricted? }.on_client_to eq(false) # Iframe itself won't be restricted - expect($document['ifr'].restricted?).to eq(false) - # But its content_window will be (due to CORS) (this only works on a real browser) - expect($document['ifr'].content_window.restricted?).to eq(true) + expect { $document['ifr'].restricted? }.on_client_to eq(false) + # But its content_window will be (due to CORS) (this does not work with opal-rspec RUNNER=chrome) + expect { $document['ifr'].content_window.restricted? }.on_client_to eq(true) end end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 6b3e15b7..2059f693 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,35 +1,113 @@ -require 'browser' -require 'console' - -module HtmlHelper - # Add some html code to the body tag ready for testing. This will - # be added before each test, then removed after each test. It is - # convenient for adding html setup quickly. The code is wrapped - # inside a div, which is directly inside the body element. - # - # describe "DOM feature" do - # html <<-HTML - #
- # HTML - # - # it "foo should exist" do - # Document["#foo"] - # end - # end - # - # @param [String] html_string html content to add - def html(html_string='') - html = "
#{html_string}
" - before do - @_spec_html = DOM(html) - @_spec_html.append_to($document.body) +if RUBY_ENGINE != 'opal' + require 'hyper-spec' + require 'opal-browser' + + ENV["RAILS_ENV"] ||= 'test' + require File.expand_path('../test_app/config/environment', __FILE__) + + require 'rspec/rails' + + module HtmlHelper + def html(html_string='') + before do + insert_html html_string + end end + end - after { @_spec_html.remove } + RSpec.configure do |config| + config.extend HtmlHelper end -end +else + require 'browser' + require 'console' + + module HtmlHelper + # Add some html code to the body tag ready for testing. This will + # be added before each test, then removed after each test. It is + # convenient for adding html setup quickly. The code is wrapped + # inside a div, which is directly inside the body element. + # + # describe "DOM feature" do + # html <<-HTML + #
+ # HTML + # + # it "foo should exist" do + # Document["#foo"] + # end + # end + # + # @param [String] html_string html content to add + def html(html_string='') + html = "
#{html_string}
" + before do + @_spec_html = DOM(html) + @_spec_html.append_to($document.body) + end + + after { @_spec_html.remove } + end + end + + + RSpec.configure do |config| + config.extend HtmlHelper + end + + module RSpec + module Expectations + class ExpectationTarget + end + module HyperSpecInstanceMethods + def to_on_client(matcher, message = nil, &block) + evaluate_client('ruby').to(matcher, message, &block) + end + + alias on_client_to to_on_client + + def to_on_client_not(matcher, message = nil, &block) + evaluate_client('ruby').not_to(matcher, message, &block) + end + + alias on_client_to_not to_on_client_not + alias on_client_not_to to_on_client_not + alias to_not_on_client to_on_client_not + alias not_to_on_client to_on_client_not + + def to_then(matcher, message = nil, &block) + evaluate_client('promise').to(matcher, message, &block) + end + + alias then_to to_then + + def to_then_not(matcher, message = nil, &block) + evaluate_client('promise').not_to(matcher, message, &block) + end + + alias then_to_not to_then_not + alias then_not_to to_then_not + alias to_not_then to_then_not + alias not_to_then to_then_not + + private + + def evaluate_client(method) + # stubs the hyper-spec evaluate_client method (basically does nothing, but execute the block) + value = @target.call + ExpectationTarget.for(value, nil) + end + end + + class BlockExpectationTarget < ExpectationTarget + include HyperSpecInstanceMethods + + def with(args) + self + end + end + end + end -RSpec.configure do |config| - config.extend HtmlHelper end diff --git a/spec/test_app/Rakefile b/spec/test_app/Rakefile new file mode 100644 index 00000000..ba6b733d --- /dev/null +++ b/spec/test_app/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require File.expand_path('../config/application', __FILE__) + +Rails.application.load_tasks diff --git a/spec/test_app/app/assets/javascripts/application.js b/spec/test_app/app/assets/javascripts/application.js new file mode 100644 index 00000000..43638e73 --- /dev/null +++ b/spec/test_app/app/assets/javascripts/application.js @@ -0,0 +1,9 @@ +//= require 'react' +//= require 'react_ujs' +//= require 'components' +if (typeof(OpalLoaded)=='undefined') { + Opal.load('components'); +} else { + Opal.loaded(OpalLoaded || []); + Opal.require("components"); +} diff --git a/spec/test_app/app/assets/javascripts/server_rendering.js b/spec/test_app/app/assets/javascripts/server_rendering.js new file mode 100644 index 00000000..df7910ca --- /dev/null +++ b/spec/test_app/app/assets/javascripts/server_rendering.js @@ -0,0 +1,9 @@ +//= require 'react-server' +//= require 'react_ujs' +//= require 'components' +if (typeof(OpalLoaded)=='undefined') { + Opal.load('components'); +} else { + Opal.loaded(OpalLoaded || []); + Opal.require("components"); +} diff --git a/spec/test_app/app/assets/stylesheets/application.css b/spec/test_app/app/assets/stylesheets/application.css new file mode 100644 index 00000000..c5f06469 --- /dev/null +++ b/spec/test_app/app/assets/stylesheets/application.css @@ -0,0 +1,14 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, + * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any styles + * defined in the other CSS/SCSS files in this directory. It is generally better to create a new + * file per style scope. + * + *= require_self + */ diff --git a/spec/test_app/app/controllers/application_controller.rb b/spec/test_app/app/controllers/application_controller.rb new file mode 100644 index 00000000..b7b8656c --- /dev/null +++ b/spec/test_app/app/controllers/application_controller.rb @@ -0,0 +1,13 @@ +class ApplicationController < ActionController::Base + # Prevent CSRF attacks by raising an exception. + # For APIs, you may want to use :null_session instead. + protect_from_forgery with: :exception + + class << self + attr_accessor :acting_user + end + + def acting_user + ApplicationController.acting_user + end +end diff --git a/spec/test_app/app/controllers/test_controller.rb b/spec/test_app/app/controllers/test_controller.rb new file mode 100644 index 00000000..2b369396 --- /dev/null +++ b/spec/test_app/app/controllers/test_controller.rb @@ -0,0 +1,19 @@ +class TestController < ApplicationController + def get_delete + render plain: 'lol' + end + + def post_put + raise 'lol param does not eq wut' unless params['lol'] == 'wut' + + render plain: 'ok' + end + + def post_file + file = params['file'] + raise 'bad file name' unless file.original_filename == 'yay.txt' + raise 'bad content' unless file.tempfile.read == 'content' + + render plain: 'ok' + end +end diff --git a/spec/test_app/app/models/_react_public_models.rb b/spec/test_app/app/models/_react_public_models.rb new file mode 100644 index 00000000..9e0c5b16 --- /dev/null +++ b/spec/test_app/app/models/_react_public_models.rb @@ -0,0 +1,2 @@ +# app/models/_react_public_models.rb +require_tree './public' if RUBY_ENGINE == 'opal' diff --git a/spec/test_app/app/models/public/address.rb b/spec/test_app/app/models/public/address.rb new file mode 100644 index 00000000..feee85cc --- /dev/null +++ b/spec/test_app/app/models/public/address.rb @@ -0,0 +1,13 @@ +class Address < ActiveRecord::Base + + MAPPED_FIELDS = %w(id street city state zip) + + def self.compose(*args) + new.tap do |address| + MAPPED_FIELDS.each_with_index do |field_name, i| + address.send("#{field_name}=", args[i]) + end + end + end + +end \ No newline at end of file diff --git a/spec/test_app/app/models/public/child_model.rb b/spec/test_app/app/models/public/child_model.rb new file mode 100644 index 00000000..093bb844 --- /dev/null +++ b/spec/test_app/app/models/public/child_model.rb @@ -0,0 +1,3 @@ +class ChildModel < ActiveRecord::Base + belongs_to :test_model +end diff --git a/spec/test_app/app/models/public/comment.rb b/spec/test_app/app/models/public/comment.rb new file mode 100644 index 00000000..4984df2b --- /dev/null +++ b/spec/test_app/app/models/public/comment.rb @@ -0,0 +1,25 @@ +class Comment < ActiveRecord::Base + # see spec/examples folder for typically setup + belongs_to :author, class_name: "User" + belongs_to :todoz, class_name: "Todo", foreign_key: :todo_id +end + +class Comment < ActiveRecord::Base + + def create_permitted? + # for testing we allow anything if there is no acting_user + # in the real world you would have something like this: + # acting_user and (acting_user.admin? or user_is? acting_user) + !acting_user or user_is? acting_user + end + + def destroy_permitted? + !acting_user or user_is? acting_user + end + + belongs_to :user + belongs_to :todo_item + + has_one :todo, -> {}, class_name: "TodoItem" # this is just so we can test scopes params and null belongs_to relations + +end diff --git a/spec/test_app/app/models/public/test_model.rb b/spec/test_app/app/models/public/test_model.rb new file mode 100644 index 00000000..797b455f --- /dev/null +++ b/spec/test_app/app/models/public/test_model.rb @@ -0,0 +1,5 @@ +class TestModel < ActiveRecord::Base + has_many :child_models + scope :completed, -> () { where(completed: true) } + scope :active, -> () { where(completed: false) } +end diff --git a/spec/test_app/app/models/public/todo.rb b/spec/test_app/app/models/public/todo.rb new file mode 100644 index 00000000..3cc94920 --- /dev/null +++ b/spec/test_app/app/models/public/todo.rb @@ -0,0 +1,6 @@ +class Todo < ActiveRecord::Base + # see spec/examples folder for typically setup + belongs_to :owner, class_name: "User" + belongs_to :created_by, class_name: "User" + has_many :comments +end diff --git a/spec/test_app/app/models/public/todo_item.rb b/spec/test_app/app/models/public/todo_item.rb new file mode 100644 index 00000000..d088cc0a --- /dev/null +++ b/spec/test_app/app/models/public/todo_item.rb @@ -0,0 +1,36 @@ +class TodoItem < ActiveRecord::Base + + def view_permitted?(attribute) + !acting_user or user_is? acting_user + end + + def update_permitted? + return true unless acting_user + return only_changed? :comments unless user_is? acting_user + true + end + + belongs_to :user + has_many :comments + has_many :commenters, class_name: "User", through: :comments, source: :user + belongs_to :comment # just so we can test an empty belongs_to relationship + + scope :find_string, ->(s) { where("title LIKE ? OR description LIKE ?", "%#{s}%", "%#{s}%") } + + scope :active, -> { where("title LIKE '%mitch%' OR description LIKE '%mitch%'")} + # to_sync :active do |scope, record| + # if record.title =~ /mitch/ || record.description =~ /mitch/ + # scope << record + # else + # scope.delete(record) + # end + # end + + scope :important, -> { where("title LIKE '%another%' OR description LIKE '%another%'")} + # to_sync(:important) {title =~ /another/ || description =~ /another/ } + + def virtual_user_first_name + user.first_name + end unless RUBY_ENGINE == 'opal' + +end diff --git a/spec/test_app/app/models/public/user.rb b/spec/test_app/app/models/public/user.rb new file mode 100644 index 00000000..c7b5e51f --- /dev/null +++ b/spec/test_app/app/models/public/user.rb @@ -0,0 +1,88 @@ +class User < ActiveRecord::Base + # see spec/examples folder for typically setup + has_many :assigned_todos, class_name: "Todo", foreign_key: :owner_id + has_many :authored_todos, class_name: "Todo", foreign_key: :created_by_id + has_many :commentz, class_name: "Comment", foreign_key: :author_id + belongs_to :manager, class_name: "User" + has_many :employees, class_name: "User", foreign_key: :manager_id +end + + +class TestData + + def initialize(string, times) + @string = string + @times = times + end + + attr_accessor :string + attr_accessor :times + + def big_string + puts "calling big_string #{string} * #{times}" + string * times + end + +end + +class User < ActiveRecord::Base + + def view_permitted?(attribute) + return self == acting_user if acting_user + super # we call super to test if its there (just for the spec) not really the right way to do it, see comments or todo_items + end + + has_many :todo_items + has_many :comments + has_many :commented_on_items, class_name: "TodoItem", through: :comments, source: :todo_item + + composed_of :address, :class_name => 'Address', :constructor => :compose, :mapping => Address::MAPPED_FIELDS.map {|f| ["address_#{f}", f] } + composed_of :address2, :class_name => 'Address', :constructor => :compose, :mapping => Address::MAPPED_FIELDS.map {|f| ["address2_#{f}", f] } + + composed_of :data, :class_name => 'TestData', :allow_nil => true, :mapping => [['data_string', 'string'], ['data_times', 'times']] + + enum test_enum: [:yes, :no] + + def name + "#{first_name} #{last_name}" + end + + # two examples of server side calculated attributes. The second takes a parameter. + # the first does not rely on an id, so can be used before the record is saved. + + def detailed_name + s = "#{first_name[0]}. #{last_name}" rescue "" + s += " - #{email}" if email + s += " (#{todo_items.size} todo#{'s' if todo_items.size > 1})" if todo_items.size > 0 + s + end unless RUBY_ENGINE == 'opal' + + def expensive_math(n) + n*n + end unless RUBY_ENGINE == 'opal' + + # this is also used for remote calculation in the aggregate test + + def verify_zip + if address.zip =~ /^\d{5}$/ + address.zip + end + end unless RUBY_ENGINE == 'opal' + +end + +class User < ActiveRecord::Base + + def as_json(*args) + {name: "bozo"} + end + + validates :email, format: {with: /\@.+\./}, :allow_nil => true + + def name=(val) # this is here to test ability to save changes to this type of psuedo attribute + val = val.to_s.split(" ") + self.first_name = val[0] + self.last_name = val[1] + end + +end unless RUBY_ENGINE == 'opal' diff --git a/spec/test_app/app/policies/auto_loader_test_classa_policy.rb b/spec/test_app/app/policies/auto_loader_test_classa_policy.rb new file mode 100644 index 00000000..708c4600 --- /dev/null +++ b/spec/test_app/app/policies/auto_loader_test_classa_policy.rb @@ -0,0 +1,3 @@ +class AutoLoaderTestClassaPolicy + always_allow_connection +end diff --git a/spec/test_app/app/policies/auto_loader_test_classb_policy.rb b/spec/test_app/app/policies/auto_loader_test_classb_policy.rb new file mode 100644 index 00000000..b4681563 --- /dev/null +++ b/spec/test_app/app/policies/auto_loader_test_classb_policy.rb @@ -0,0 +1,3 @@ +class AutoLoaderTestClassbPolicy + always_allow_connection +end diff --git a/spec/test_app/app/policies/auto_loader_test_classc_policy.rb b/spec/test_app/app/policies/auto_loader_test_classc_policy.rb new file mode 100644 index 00000000..bf496cfa --- /dev/null +++ b/spec/test_app/app/policies/auto_loader_test_classc_policy.rb @@ -0,0 +1,3 @@ +class AutoLoaderTestClassxPolicy + always_allow_connection +end diff --git a/spec/test_app/app/policies/auto_loader_test_classd_policy.rb b/spec/test_app/app/policies/auto_loader_test_classd_policy.rb new file mode 100644 index 00000000..318ad58a --- /dev/null +++ b/spec/test_app/app/policies/auto_loader_test_classd_policy.rb @@ -0,0 +1,3 @@ +class AutoLoaderTestClassyPolicy + always_allow_connection +end diff --git a/spec/test_app/app/views/components.rb b/spec/test_app/app/views/components.rb new file mode 100644 index 00000000..426f4a7c --- /dev/null +++ b/spec/test_app/app/views/components.rb @@ -0,0 +1,11 @@ +require 'opal' +require 'promise' +require 'hyper-component' +require 'hyper-state' +require 'time' +if Hyperstack::Component::IsomorphicHelpers.on_opal_client? + require 'browser' + require 'browser/delay' + require 'browser/http' +end +require_tree './components' diff --git a/spec/test_app/app/views/components/say_hello.rb b/spec/test_app/app/views/components/say_hello.rb new file mode 100644 index 00000000..18c2c157 --- /dev/null +++ b/spec/test_app/app/views/components/say_hello.rb @@ -0,0 +1,7 @@ +class SayHello + include Hyperstack::Component + param :name + render(DIV) do + "Hello there #{@Name}" + end +end diff --git a/spec/test_app/app/views/components/show.rb b/spec/test_app/app/views/components/show.rb new file mode 100644 index 00000000..fa78d4c0 --- /dev/null +++ b/spec/test_app/app/views/components/show.rb @@ -0,0 +1,6 @@ +class Show + include Hyperstack::Component + render(DIV) do + "Hello There From A Controller" + end +end diff --git a/spec/test_app/app/views/layouts/application.html.erb b/spec/test_app/app/views/layouts/application.html.erb new file mode 100644 index 00000000..9c795c5b --- /dev/null +++ b/spec/test_app/app/views/layouts/application.html.erb @@ -0,0 +1,14 @@ + + + + HyperMesh Test App + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> + <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> + <%= csrf_meta_tags %> + + + +<%= yield %> + + + diff --git a/spec/test_app/bin/bundle b/spec/test_app/bin/bundle new file mode 100644 index 00000000..66e9889e --- /dev/null +++ b/spec/test_app/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +load Gem.bin_path('bundler', 'bundle') diff --git a/spec/test_app/bin/rails b/spec/test_app/bin/rails new file mode 100644 index 00000000..5191e692 --- /dev/null +++ b/spec/test_app/bin/rails @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +APP_PATH = File.expand_path('../../config/application', __FILE__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/spec/test_app/bin/rake b/spec/test_app/bin/rake new file mode 100644 index 00000000..17240489 --- /dev/null +++ b/spec/test_app/bin/rake @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/spec/test_app/bin/setup b/spec/test_app/bin/setup new file mode 100644 index 00000000..acdb2c13 --- /dev/null +++ b/spec/test_app/bin/setup @@ -0,0 +1,29 @@ +#!/usr/bin/env ruby +require 'pathname' + +# path to your application root. +APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) + +Dir.chdir APP_ROOT do + # This script is a starting point to setup your application. + # Add necessary setup steps to this file: + + puts "== Installing dependencies ==" + system "gem install bundler --conservative" + system "bundle check || bundle install" + + # puts "\n== Copying sample files ==" + # unless File.exist?("config/database.yml") + # system "cp config/database.yml.sample config/database.yml" + # end + + puts "\n== Preparing database ==" + system "bin/rake db:setup" + + puts "\n== Removing old logs and tempfiles ==" + system "rm -f log/*" + system "rm -rf tmp/cache" + + puts "\n== Restarting application server ==" + system "touch tmp/restart.txt" +end diff --git a/spec/test_app/config.ru b/spec/test_app/config.ru new file mode 100644 index 00000000..bd83b254 --- /dev/null +++ b/spec/test_app/config.ru @@ -0,0 +1,4 @@ +# This file is used by Rack-based servers to start the application. + +require ::File.expand_path('../config/environment', __FILE__) +run Rails.application diff --git a/spec/test_app/config/application.rb b/spec/test_app/config/application.rb new file mode 100644 index 00000000..6c87017c --- /dev/null +++ b/spec/test_app/config/application.rb @@ -0,0 +1,57 @@ + +require "rails" +# Pick the frameworks you want: +require "active_model/railtie" +require "active_job/railtie" +# require "active_record/railtie" +require "action_controller/railtie" +require "action_mailer/railtie" +require "action_view/railtie" +require "sprockets/railtie" +require "rails/test_unit/railtie" +require File.expand_path('../boot', __FILE__) + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups(assets: %w(development test))) + +require 'opal-rails' +require 'hyper-component' + +module TestApp + class Application < Rails::Application + #config.action_cable.allowed_request_origins = [/http\:\/\/127\.0\.0\.1\:[0-9]*/] + config.eager_load_paths += %W(#{config.root}/app/models/public) + config.autoload_paths += %W(#{config.root}/app/models/public) + config.assets.paths << ::Rails.root.join('app', 'models').to_s + config.opal.method_missing = true + config.opal.optimized_operators = true + config.opal.arity_check = false + config.opal.const_missing = true + config.opal.dynamic_require_severity = :ignore + config.opal.enable_specs = true + config.opal.spec_location = 'spec-opal' + config.hyperstack.auto_config = false + + config.assets.cache_store = :null_store + + config.react.server_renderer_options = { + files: ['server_rendering.js'] + } + config.react.server_renderer_directories = ['/app/assets/javascripts'] + # Settings in config/environments/* take precedence over those specified here. + # Application configuration should go into files in config/initializers + # -- all .rb files in that directory are automatically loaded. + + # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. + # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. + # config.time_zone = 'Central Time (US & Canada)' + + # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. + # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] + # config.i18n.default_locale = :de + + # Do not swallow errors in after_commit/after_rollback callbacks. + #config.active_record.raise_in_transactional_callbacks = true + end +end diff --git a/spec/test_app/config/boot.rb b/spec/test_app/config/boot.rb new file mode 100644 index 00000000..074f5557 --- /dev/null +++ b/spec/test_app/config/boot.rb @@ -0,0 +1,6 @@ +require 'rubygems' +gemfile = File.expand_path("../../../../Gemfile", __FILE__) + +ENV['BUNDLE_GEMFILE'] = gemfile +require 'bundler' +Bundler.setup diff --git a/spec/test_app/config/environment.rb b/spec/test_app/config/environment.rb new file mode 100644 index 00000000..ee8d90dc --- /dev/null +++ b/spec/test_app/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require File.expand_path('../application', __FILE__) + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/spec/test_app/config/environments/development.rb b/spec/test_app/config/environments/development.rb new file mode 100644 index 00000000..4c00d87a --- /dev/null +++ b/spec/test_app/config/environments/development.rb @@ -0,0 +1,41 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + #config.active_record.migration_error = :page_load + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = false + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # Adds additional error checking when serving assets at runtime. + # Checks for improperly declared sprockets dependencies. + # Raises helpful error messages. + config.assets.raise_runtime_errors = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/spec/test_app/config/environments/production.rb b/spec/test_app/config/environments/production.rb new file mode 100644 index 00000000..5c1b32e4 --- /dev/null +++ b/spec/test_app/config/environments/production.rb @@ -0,0 +1,79 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Enable Rack::Cache to put a simple HTTP cache in front of your application + # Add `rack-cache` to your Gemfile before enabling this. + # For large-scale production use, consider using a caching reverse proxy like + # NGINX, varnish or squid. + # config.action_dispatch.rack_cache = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Compress JavaScripts and CSS. + config.assets.js_compressor = :uglifier + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # Asset digests allow you to set far-future HTTP expiration dates on all assets, + # yet still be able to expire them through the digest params. + config.assets.digest = true + + # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Use the lowest log level to ensure availability of diagnostic information + # when problems arise. + config.log_level = :debug + + # Prepend all log lines with the following tags. + # config.log_tags = [ :subdomain, :uuid ] + + # Use a different logger for distributed setups. + # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = 'http://assets.example.com' + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/spec/test_app/config/environments/test.rb b/spec/test_app/config/environments/test.rb new file mode 100644 index 00000000..de6cdf36 --- /dev/null +++ b/spec/test_app/config/environments/test.rb @@ -0,0 +1,46 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = false + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure static file server for tests with Cache-Control for performance. + config.public_file_server.enabled = true + config.public_file_server.headers = { 'Cache-Control' => 'public, max-age=3600' } + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Randomize the order test cases are executed. + config.active_support.test_order = :random + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + config.assets.paths << ::Rails.root.join('spec', 'assets', 'stylesheets').to_s + config.assets.paths << ::Rails.root.join('spec', 'assets', 'javascripts').to_s + + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/spec/test_app/config/initializers/assets.rb b/spec/test_app/config/initializers/assets.rb new file mode 100644 index 00000000..9c39b88b --- /dev/null +++ b/spec/test_app/config/initializers/assets.rb @@ -0,0 +1,12 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' +Rails.application.config.assets.precompile += %w[time_cop.js factorial.js test.css] + +# Add additional assets to the asset load path +# Rails.application.config.assets.paths << Emoji.images_path + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in app/assets folder are already added. +# Rails.application.config.assets.precompile += %w( search.js ) diff --git a/spec/test_app/config/initializers/backtrace_silencers.rb b/spec/test_app/config/initializers/backtrace_silencers.rb new file mode 100644 index 00000000..59385cdf --- /dev/null +++ b/spec/test_app/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/spec/test_app/config/initializers/cookies_serializer.rb b/spec/test_app/config/initializers/cookies_serializer.rb new file mode 100644 index 00000000..7f70458d --- /dev/null +++ b/spec/test_app/config/initializers/cookies_serializer.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/spec/test_app/config/initializers/filter_parameter_logging.rb b/spec/test_app/config/initializers/filter_parameter_logging.rb new file mode 100644 index 00000000..4a994e1e --- /dev/null +++ b/spec/test_app/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/spec/test_app/config/initializers/inflections.rb b/spec/test_app/config/initializers/inflections.rb new file mode 100644 index 00000000..ac033bf9 --- /dev/null +++ b/spec/test_app/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/spec/test_app/config/initializers/mime_types.rb b/spec/test_app/config/initializers/mime_types.rb new file mode 100644 index 00000000..dc189968 --- /dev/null +++ b/spec/test_app/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/spec/test_app/config/initializers/session_store.rb b/spec/test_app/config/initializers/session_store.rb new file mode 100644 index 00000000..438994fb --- /dev/null +++ b/spec/test_app/config/initializers/session_store.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.session_store :cookie_store, key: '_test_app_session' diff --git a/spec/test_app/config/initializers/synchromesh.rb b/spec/test_app/config/initializers/synchromesh.rb new file mode 100644 index 00000000..2ec97d6b --- /dev/null +++ b/spec/test_app/config/initializers/synchromesh.rb @@ -0,0 +1,11 @@ +# require 'pusher' +# Pusher.app_id = "MY_TEST_ID" +# Pusher.key = "MY_TEST_KEY" +# Pusher.secret = "MY_TEST_SECRET" +# require 'pusher-fake' +# +# HyperMesh.configuration do |config| +# config.transport = :pusher +# config.channel_prefix = "synchromesh" +# config.opts = {app_id: Pusher.app_id, key: Pusher.key, secret: Pusher.secret}.merge(PusherFake.configuration.web_options) +# end diff --git a/spec/test_app/config/initializers/wrap_parameters.rb b/spec/test_app/config/initializers/wrap_parameters.rb new file mode 100644 index 00000000..33725e95 --- /dev/null +++ b/spec/test_app/config/initializers/wrap_parameters.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] if respond_to?(:wrap_parameters) +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/spec/test_app/config/locales/en.yml b/spec/test_app/config/locales/en.yml new file mode 100644 index 00000000..06539571 --- /dev/null +++ b/spec/test_app/config/locales/en.yml @@ -0,0 +1,23 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# To learn more, please read the Rails Internationalization guide +# available at http://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/spec/test_app/config/routes.rb b/spec/test_app/config/routes.rb new file mode 100644 index 00000000..6b17c9b8 --- /dev/null +++ b/spec/test_app/config/routes.rb @@ -0,0 +1,7 @@ +Rails.application.routes.draw do + get 'http' => 'test#get_delete' + post 'http' => 'test#post_put' + put 'http' => 'test#post_put' + delete 'http' => 'test#get_delete' + post 'http-file' => 'test#post_file' +end diff --git a/spec/test_app/config/secrets.yml b/spec/test_app/config/secrets.yml new file mode 100644 index 00000000..9dc0430a --- /dev/null +++ b/spec/test_app/config/secrets.yml @@ -0,0 +1,22 @@ +# Be sure to restart your server when you modify this file. + +# Your secret key is used for verifying the integrity of signed cookies. +# If you change this key, all old signed cookies will become invalid! + +# Make sure the secret is at least 30 characters and all random, +# no regular words or you'll be exposed to dictionary attacks. +# You can use `rake secret` to generate a secure secret key. + +# Make sure the secrets in this file are kept private +# if you're sharing your code publicly. + +development: + secret_key_base: ad4964ee73093a0573860466d1e714c8e7b1103d56bbae9e7c7b9843163e51aa9b85c2fef3979a29dbeb0d77a8ade834d77b04890042a45b8121068c2a0e8cba + +test: + secret_key_base: b1cc8e3d36a79eed70d5aa66b05ff6aa8872a43adbeaa8c9f6d21a5bd1b65f231c56a4efadc73c975ccfc5bbd7f238c0db0fe4b5a116353b646cb6de369f8063 + +# Do not keep production secrets in the repository, +# instead read values from the environment. +production: + secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> diff --git a/spec/test_app/config/xcable.yml b/spec/test_app/config/xcable.yml new file mode 100644 index 00000000..640b5ee0 --- /dev/null +++ b/spec/test_app/config/xcable.yml @@ -0,0 +1,10 @@ + +development: + adapter: async + +test: + adapter: async + +production: + adapter: redis + url: redis://10.10.3.153:6381 diff --git a/spec/test_app/config/xdatabase.yml b/spec/test_app/config/xdatabase.yml new file mode 100644 index 00000000..6021a44a --- /dev/null +++ b/spec/test_app/config/xdatabase.yml @@ -0,0 +1,47 @@ +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +# +default: &default + adapter: sqlite3 + encoding: utf8 + username: root + password: + host: 127.0.0.1 + port: 3306 + pool: 5 + timeout: 10000 + +development: + <<: *default + database: development_db_name + +test: + <<: *default + database: test_db_name + +production: + <<: *default + database: production_db_name + +# default: &default +# adapter: sqlite3 +# pool: 5 +# timeout: 10000 +# +# development: +# <<: *default +# database: db/development.sqlite3 +# +# # Warning: The database defined as "test" will be erased and +# # re-generated from your development database when you run "rake". +# # Do not set this db to the same as development or production. +# test: +# <<: *default +# database: db/test.sqlite3 +# +# production: +# <<: *default +# database: db/production.sqlite3 diff --git a/spec/test_app/db/development.sqlite3 b/spec/test_app/db/development.sqlite3 new file mode 100644 index 0000000000000000000000000000000000000000..4fe29ad03373552d324abf91bd99a28b68f67a99 GIT binary patch literal 45056 zcmeI%&u$t=9Ki8iW1E2M;3$Vx4^cNXbqEi6?WIz z9bD&#Q>mvO`XssKIr~W6b`AC}*cZEp2z`-(+21hB{64?o&zPTo+H{l@FZ{r@ zl~^~H4AV5e5yCKxoW3sT>*$izjoHzGzBd!?i<&uO^`HFW!kwupFF}j{9dYZp6#ZNUE8x?O1-4?iKAtu+oj`A z=i*uYej}ch^1FT*-^{0H6~`_$E9I#4w7N3v1kOQJwxUq-NL_W2MdN+}&05RL=G)APjSN-W^}DhcsEXrKiHt{cJk5QTS4M4F~^k z1&`L_SON9h%D$go-Opy`t-E*4-8jAByH6-z_odg7V~3ekvSXchqLNfROnAb7%Uc5eQOA|;ZxCx$TaPTZE^^(eEX`u~SUu&edZwq`sY$Ch^FO|V3ZY)M>` zYz^7;STmUoWbej{IqW7u4vV=i76|5&Oa2B3kQ_F-B{?KOE?g7dSFR);zhoPmZL`1EZS3@{j@jR-H>_^gY}hTU z+aHr$yn3g$vQ}f)R=$3-#x9PzYmt3*vDI8;S8uJ=uGj9cx9_aJwQ}bk`)2JPyRyFa z_UbKQ^H%NF8hh()_*=hu^DFFPW5dLh!-zcH3jDfvlg)1N3g~WH=#z}5+?75#0>g*7XrSRdbI0gl} zyN)wmnhvNstpJc2HUswc+O?JSn``Xlt;>Nshb3+9(KrB()_dJxJ6QT|Vb;Os$(~~s z1k=9rFBindNjnxcJ!rAC&323~^n>Bb+-mjucD-wK0{6C!m_)NB5^jZ~^hj$Q5kjqUluUK3e!0TXM@e-Hzznsl3T)LEaRC0TXomLy3T~^a<_Z!spY|uJr(y@%hWnkDK z_~szk+FOO3p!nn>ylE9~D(gpaJD1FAjFa96`hyWsh2p|H803v`0 zAOeU0B7g`W0*JtKfxxLma!KHLg;PbI*94wZ@}L*`|IbC`q7sMzB7g`W0*C-2fCwN0 zhyWsh2p|H8zz~7csij=d|0nT(SoF`7{scin1P}p401-e05CKF05kLeG0Ym^1Km-th zXA6NFiOj{bD=TLAL91tV$=itJeGuZ=mwB!%sH`AXIjt%P6-5?hUKvjz@qfqv|IcSj zLzD&)Km-s0L;w*$1P}p401-e05CKF05kLf<0)b-cVvd?O@Z$e}R@yDSTKt#dkBYa7 zGljn_JS_0@|2F^Q`QMm7JNJXqr*qfmnEa>t-cyu}SrGw501-e05CKF05kLf9NCawU zXPAr3%E~HhbXc-QC@Xp4DUIc%sw`Ipxgsl)q8>o0{Zg2X7|%u!bZ$JQ_EMOQ5Pvhr z3F>%C?M#>rAA7T`s&c%X4yAS~%qEHeCskBk6l6V8fJdp7!fc{tIyZBY5LK6xYQ=DV zUksh)gsQAodAXu%iX!{@Ba~Vp%*GcZaI+|Cnx{>KQkxI68B-?5$z#|MN^LI8#;+o} zOjYGMAKM6}mJhS>tt)V|s7dkas)TYa2W(1#Rn3h?2=yd27nnHlCX(F*u@ zECTXCTw16~LPh2!P6*Uika8^()=P@=k@Vp|aTJAgA+qQH|Frbe z(!ZBJE`9t$K9o>tL;w*$1P}p401-e05CKF05kLeG0YqTh2%Jl&t|Z*koQ9X@&ZWF0 za{Sl1Bz!%eNnIV@W_8Xb0yhNC2TT5PGIcd~!0}L^z?X*fQYv*ZL7hsG@%;b)F8#dp zS?OofRu=go0*C-2fCwN0hyWsh2p|H803v`0AOeWMi6U@1c`BJ^F6H_roY~xD$w`^% zRGMLO>0BbsEacv~v9hw_`Tq}!pB1+X|6KT}AQ%30?$76h{3rRv9Igg9(JDgbhyWsh z2p|H803v`0&$qJcUb=(maxtqR$}v2NvS|h>#DC^gmNcCgn#MfFjK4hj%h&SjPjIWCBCAG zftC1fX(P&hCVhMh8A&MWP>!sN;Z^N?)uT+Vnbh$uBp`<<>4CQ)9DN-*2xYPy$>Uo{ zKn{3wCW^Zw2cb-qBb#vQ<(Pd4EeUkdTD&92XUMc(sZPj>< z2p|H803v`0AOeU0B7g`W0*C-2@QaARYBtAQfGLI&li0L2S(q`iSbypV981{T0e->d z*JWLcrKlXw^W4_V>P(bXcuNJBl?Ky@0Uy;bgy$rAYv#>Nj=AJYwbe7a_YaZ_HqhY5 z6vL^!w3T@?9mgy_iz3NftdfeNYofB1SxtFLI+J>iWb{f4rixj%-LR)Nj`VH1I1P}p401-e05CKF05kLey z1lCJA<_d}4=A5@-S$^nou&{`N9H&M3L{wNFM)C@^nO1~yX1zFpt?z}HmWQydA8@AGI+WAv^Ap&{O3Ue*uKV5`#nz>qzCD*?V2uXDBof=E4O=|2 zO{;6Nj{D@fB6KztT&Gy|Ifs%etmk6|6=L+Kg7pv())jw?xd>%`JvV`^uYVvjNae#C zq0Fz(#l^IP)=r#?=-T$W~<@yj#ycB9xhRaO)3b>+4TvmULM;fHJcV4t@+8=<5(PQh~3*Fa{5>00cd53k{q zRk`+#$u`Y?qu1KCTUIwtXik%PIlfSb@&N?7%i9hbu*w(Wu*SC0>auI_mOS}mciX1X zhf*xo-Z5-;yJy0Gd#BaiX7{WC+iW%69PwrI67@DSt(Hb8$@>rr*MAiX&oM@qXydBI zZdpAy6zndi-7(1ORg3Ky-91O|er#!~3Y!Ovr?eqJUVhUp%#Gy76l1WPt!;LT=tx#Q z+ZJfr(K?@-bk z5JEqKmC>vPS)*z?Liqrq=u@?_Knc7k`eD`xC3zoW?N4WAG*4dRV5^L{eGnW<8zS&y zt?X?eE;Gyx5a=S~wC0{QfNj^n%v#}-*pkoGCIEqJ9zl^8=<5($kO}6_hkVF1P%}T2;~C^(@)jP z0wusvqp`aRz)BCGB=18o|LLqOP#UjLRu-YOA;dq{%3xa&mUNj1_hmFs4qoK&A8Zkd z=l}oFbMW{_6%YYL01-e05CKF05kLeG0Ym^1Km-thX90ozQ;AvTwfzN{>s^EC>6P8x zb_=#|h3Q>*r9#m+HL2X-B)u%D!e-e}WU(x6am}sG%_i&<%9R_NqArW7{zfv(z$6Q^ z5@HgXJ%L>V_zFxubJSd>>;Fq5ipG2X|35wp0HF+s03v`0AOeU0B7g`W0*C-2fCwN0 zhyWsR1OzU_34eEI%jGh=W81scn-Oil}euY|H&N3%>5nw zW0=!NCYda$mPEFiq#QmHkXRn|>{J%nIsr44z8 z-^s#CvspLnDtnEO7wO=8%PJYJA7tUHG%V`~pQk=Zi;r32W5~Ngjd**|dHR#t}OLS}r zk}0*EeC3ItK5e}nLb-62Pfw^YY%J><(;ht7nL;Yl4Su`q1$YO?LR9I-gbd zDUko(mvR~AqbnmThTh-qS$nZ&EUK{Z61EB>p_}0ojOR2s2TaspIr|r4#-tQzF2g4n zwIJC||NnS)c`Kiz9sCJCyJAYEJNfB!?=giO)_`NO`UdP)*2G5_`@x6#?^k9s%5t}Kiei%-KiT^o*cu7M89xu@(7n#*jYw{nfy z8Ab>1oXVIwM#-mYy#B!WnHF~Fz$M}H4E&vfztS)bKM;WvK;X%HWD4M2?-4bA3V=MK zI0eQ~^dpKKqze1G>d>lQU^hS_C%mdU2LOG6GXOEAp1>%I)UXIIkw#UU;|*? zqo`+M1|SB(LqBDrRX(K|fEd^gEmX9!Jj933J!%GEgUkSkUdumda4O3xywDmLoPz$k zs&d31!nBTV!)wRI+Ws)X{8Z|2eLc(s|qIi_9WgSGJ?mt{eVK^7nvq(h2QKAYv9~j%i zS!y@Mi80jOnR&1xML|@mMzh&7`~5mh2bw0tdED9=r8ZjjUO269L*yi!_Ly#B?4FN(G|luxrw>8ell<^kx{supN4^bpYbQVStiaf$?UG66Yu|vj50(^J&|$hIMog@P7P;8_n#~?in#wndmr!qN6mZKw1*!7TR&m{ aKWcSH=&B+H5gpwPRhrfyFI?g=h5bJ~Qh{** literal 0 HcmV?d00001 diff --git a/spec/test_app/lib/assets/.keep b/spec/test_app/lib/assets/.keep new file mode 100644 index 00000000..e69de29b diff --git a/spec/test_app/log/development.log b/spec/test_app/log/development.log new file mode 100644 index 00000000..e69de29b diff --git a/spec/test_app/log/test.log b/spec/test_app/log/test.log new file mode 100644 index 00000000..409631d0 --- /dev/null +++ b/spec/test_app/log/test.log @@ -0,0 +1,10710 @@ +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:40 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (3528.0ms) +Completed 200 OK in 3532ms (Views: 3529.7ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:44 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:44 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:44 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:44 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:44 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:45 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (94.0ms) +Completed 200 OK in 95ms (Views: 94.2ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:45 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:45 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:45 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:45 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:45 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:47 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (66.1ms) +Completed 200 OK in 67ms (Views: 66.4ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:47 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:47 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:47 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:47 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:47 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:48 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (69.5ms) +Completed 200 OK in 70ms (Views: 69.8ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:49 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:49 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:49 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:49 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:49 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:50 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (75.6ms) +Completed 200 OK in 76ms (Views: 75.9ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:50 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:50 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:50 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:50 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:50 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:51 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (657.9ms) +Completed 200 OK in 659ms (Views: 658.2ms) +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:52 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:52 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:53 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (26.5ms) +Completed 200 OK in 88ms (Views: 87.1ms) +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:53 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:53 -0500 +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:53 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:53 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:53 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:54 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (126.5ms) +Completed 200 OK in 127ms (Views: 126.8ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:54 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:54 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:54 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:54 -0500 +Started GET "/assets/test.css" for 127.0.0.1 at 2017-02-06 14:37:54 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:56 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (351.3ms) +Completed 200 OK in 352ms (Views: 351.8ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:56 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:56 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:56 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:56 -0500 +Started GET "/assets/factorial.js" for 127.0.0.1 at 2017-02-06 14:37:57 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:58 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (61.8ms) +Completed 200 OK in 62ms (Views: 62.1ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:58 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:58 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:58 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:58 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:58 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:02 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (102.7ms) +Completed 200 OK in 104ms (Views: 103.3ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:02 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:02 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:02 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:02 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:02 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:05 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (71.5ms) +Completed 200 OK in 72ms (Views: 71.7ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:05 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:05 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:05 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:05 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:05 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:08 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (65.7ms) +Completed 200 OK in 66ms (Views: 66.0ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:08 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:08 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:08 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:08 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:08 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:09 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (57.6ms) +Completed 200 OK in 58ms (Views: 57.8ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:09 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:09 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:09 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:09 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:09 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:14 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (63.8ms) +Completed 200 OK in 64ms (Views: 64.0ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:14 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:14 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:14 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:14 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:14 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:17 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (62.7ms) +Completed 200 OK in 64ms (Views: 63.1ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:17 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:17 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:17 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:17 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:17 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:19 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (65.9ms) +Completed 200 OK in 67ms (Views: 66.2ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:19 -0500 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:19 -0500 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:19 -0500 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:19 -0500 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:19 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:00 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (592.2ms) +Completed 200 OK in 606ms (Views: 602.6ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:01 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:01 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:01 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:01 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:01 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (128.1ms) +Completed 200 OK in 129ms (Views: 128.3ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (66.5ms) +Completed 200 OK in 67ms (Views: 66.7ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:03 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (62.4ms) +Completed 200 OK in 63ms (Views: 62.6ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:03 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:03 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:03 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:03 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:03 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:04 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (69.3ms) +Completed 200 OK in 70ms (Views: 69.7ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:04 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:04 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:04 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:04 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:04 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:05 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (348.7ms) +Completed 200 OK in 349ms (Views: 349.0ms) +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:05 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:05 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (15.0ms) +Completed 200 OK in 68ms (Views: 67.6ms) +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (62.8ms) +Completed 200 OK in 64ms (Views: 63.2ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 +Started GET "/assets/test.css" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (71.2ms) +Completed 200 OK in 72ms (Views: 71.4ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 +Started GET "/assets/factorial.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:08 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (58.7ms) +Completed 200 OK in 59ms (Views: 58.9ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:08 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:08 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:08 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:08 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:08 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:11 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (56.8ms) +Completed 200 OK in 58ms (Views: 57.2ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:11 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:11 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:11 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:11 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:11 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:12 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (57.4ms) +Completed 200 OK in 58ms (Views: 57.6ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:12 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:12 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:12 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:12 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:12 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (60.6ms) +Completed 200 OK in 61ms (Views: 60.9ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (79.1ms) +Completed 200 OK in 80ms (Views: 79.3ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:14 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:14 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:14 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:14 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:14 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:17 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (88.7ms) +Completed 200 OK in 89ms (Views: 89.0ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:17 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:17 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:17 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:17 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:17 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:19 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (106.8ms) +Completed 200 OK in 107ms (Views: 107.1ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:19 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:19 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:19 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:19 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:19 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:20 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (70.6ms) +Completed 200 OK in 71ms (Views: 70.9ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:20 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:20 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:20 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:20 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:20 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:35 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (648.6ms) +Completed 200 OK in 652ms (Views: 650.0ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:35 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:35 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:35 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:35 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:35 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:36 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (54.9ms) +Completed 200 OK in 56ms (Views: 55.1ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:36 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:36 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:36 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:36 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:36 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:37 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (79.4ms) +Completed 200 OK in 80ms (Views: 79.7ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:37 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:37 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:37 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:37 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:37 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:38 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (91.1ms) +Completed 200 OK in 92ms (Views: 91.4ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:38 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:38 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:38 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:38 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:38 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:39 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (61.4ms) +Completed 200 OK in 62ms (Views: 61.6ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:39 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:39 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:39 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:39 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:39 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:40 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (315.9ms) +Completed 200 OK in 317ms (Views: 316.2ms) +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:40 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:40 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:41 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (13.4ms) +Completed 200 OK in 65ms (Views: 64.7ms) +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:41 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:41 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:41 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:41 -0400 +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:41 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (67.0ms) +Completed 200 OK in 68ms (Views: 67.3ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 +Started GET "/assets/test.css" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (72.9ms) +Completed 200 OK in 74ms (Views: 73.2ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 +Started GET "/assets/factorial.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:43 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (63.4ms) +Completed 200 OK in 64ms (Views: 63.7ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:43 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:43 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:43 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:44 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:44 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:46 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (60.9ms) +Completed 200 OK in 62ms (Views: 61.2ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:46 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:46 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:46 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:46 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:46 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:47 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (55.1ms) +Completed 200 OK in 56ms (Views: 55.3ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:47 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:47 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:47 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:47 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:47 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:48 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (76.8ms) +Completed 200 OK in 77ms (Views: 77.1ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:48 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:48 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:48 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:48 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:48 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:49 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (62.8ms) +Completed 200 OK in 63ms (Views: 63.1ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:49 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:49 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:49 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:49 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:49 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:53 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (60.7ms) +Completed 200 OK in 61ms (Views: 61.0ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:53 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:53 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:53 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:53 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:53 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:55 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (54.8ms) +Completed 200 OK in 55ms (Views: 55.1ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:55 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:55 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:55 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:55 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:55 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:56 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (61.2ms) +Completed 200 OK in 62ms (Views: 61.4ms) +Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:56 -0400 +Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:56 -0400 +Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:56 -0400 +Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:56 -0400 +Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:56 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:10 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (3523.2ms) +Completed 200 OK in 3527ms (Views: 3525.3ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 14:18:14 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 14:18:14 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 14:18:14 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 14:18:14 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 14:18:14 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:15 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (36.2ms) +Completed 200 OK in 37ms (Views: 36.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:16 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.1ms) +Completed 200 OK in 40ms (Views: 39.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:17 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (59.9ms) +Completed 200 OK in 61ms (Views: 60.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:18 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.0ms) +Completed 200 OK in 42ms (Views: 41.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:19 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1513711100.271897 ********************************************* + Rendered inline template (492.2ms) +Completed 200 OK in 493ms (Views: 492.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:21 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (8.5ms) +Completed 200 OK in 37ms (Views: 36.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:22 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (44.2ms) +Completed 200 OK in 45ms (Views: 44.5ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2017-12-19 14:18:22 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:23 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.6ms) +Completed 200 OK in 42ms (Views: 41.9ms) +Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2017-12-19 14:18:23 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:24 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (70.3ms) +Completed 200 OK in 71ms (Views: 70.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:27 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (46.7ms) +Completed 200 OK in 48ms (Views: 47.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:29 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (74.9ms) +Completed 200 OK in 76ms (Views: 75.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:31 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.7ms) +Completed 200 OK in 26ms (Views: 26.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:32 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (32.5ms) +Completed 200 OK in 35ms (Views: 34.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:36 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.3ms) +Completed 200 OK in 25ms (Views: 24.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:38 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.3ms) +Completed 200 OK in 27ms (Views: 25.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:39 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (37.7ms) +Completed 200 OK in 38ms (Views: 38.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:23:01 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (877.1ms) +Completed 200 OK in 881ms (Views: 878.6ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 14:23:02 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 14:23:02 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 14:23:02 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 14:23:02 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 14:23:02 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:31:46 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (728.6ms) +Completed 200 OK in 732ms (Views: 729.8ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 14:31:47 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 14:31:47 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 14:31:47 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 14:31:47 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 14:31:47 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:43:22 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (778.3ms) +Completed 200 OK in 781ms (Views: 779.5ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 14:43:22 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 14:43:22 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 14:43:22 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 14:43:22 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 14:43:22 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:48:14 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (773.2ms) +Completed 200 OK in 777ms (Views: 774.5ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 14:48:15 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 14:48:15 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 14:48:15 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 14:48:15 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 14:48:15 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:55:21 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (756.7ms) +Completed 200 OK in 760ms (Views: 758.2ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 14:55:22 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 14:55:22 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 14:55:22 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 14:55:22 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 14:55:22 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 15:02:56 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (698.9ms) +Completed 200 OK in 702ms (Views: 700.3ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 15:02:57 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 15:02:57 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 15:02:57 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 15:02:57 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 15:02:57 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 15:15:32 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (767.6ms) +Completed 200 OK in 771ms (Views: 768.9ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 15:15:33 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 15:15:33 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 15:15:33 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 15:15:33 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 15:15:33 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 16:59:59 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (830.3ms) +Completed 200 OK in 838ms (Views: 832.6ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:00:00 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:00:00 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:00:00 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:00:00 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:00:00 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:00:17 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (672.4ms) +Completed 200 OK in 675ms (Views: 673.5ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:00:17 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:00:17 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:00:17 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:00:17 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:00:17 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:10:58 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (888.5ms) +Completed 200 OK in 892ms (Views: 889.8ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:10:59 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:10:59 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:10:59 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:10:59 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:10:59 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:13:08 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (723.3ms) +Completed 200 OK in 726ms (Views: 724.5ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:13:09 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:13:09 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:13:09 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:13:09 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:13:09 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:15:31 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (751.8ms) +Completed 200 OK in 756ms (Views: 753.5ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:15:32 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:15:32 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:15:32 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:15:32 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:15:32 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:17:10 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (811.9ms) +Completed 200 OK in 815ms (Views: 813.1ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:17:11 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:17:11 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:17:11 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:17:11 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:17:11 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:34:58 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (784.0ms) +Completed 200 OK in 788ms (Views: 785.3ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:34:59 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:34:59 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:34:59 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:34:59 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:34:59 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:36:38 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (700.2ms) +Completed 200 OK in 703ms (Views: 701.4ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:36:39 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:36:39 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:36:39 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:36:39 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:36:39 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:56:07 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (722.2ms) +Completed 200 OK in 725ms (Views: 723.5ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:56:08 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:56:08 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:56:08 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:56:08 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:56:08 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:56:21 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (725.5ms) +Completed 200 OK in 729ms (Views: 727.0ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:56:22 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:56:22 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:56:22 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:56:22 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:56:22 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:57:28 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (687.2ms) +Completed 200 OK in 689ms (Views: 688.1ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:57:28 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:57:28 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:57:28 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:57:28 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:57:28 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:09:58 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1416.7ms) +Completed 200 OK in 1423ms (Views: 1419.3ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 18:10:00 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 18:10:00 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 18:10:00 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 18:10:00 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 18:10:00 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:04 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (66.0ms) +Completed 200 OK in 67ms (Views: 66.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:06 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (68.8ms) +Completed 200 OK in 70ms (Views: 69.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:07 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (74.2ms) +Completed 200 OK in 76ms (Views: 74.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:08 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (64.5ms) +Completed 200 OK in 66ms (Views: 64.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:09 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1513725010.4211771 ********************************************* + Rendered inline template (547.0ms) +Completed 200 OK in 548ms (Views: 547.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:11 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (12.5ms) +Completed 200 OK in 59ms (Views: 58.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:12 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (102.9ms) +Completed 200 OK in 104ms (Views: 103.4ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2017-12-19 18:10:12 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:13 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (74.7ms) +Completed 200 OK in 76ms (Views: 75.3ms) +Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2017-12-19 18:10:13 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:15 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (76.1ms) +Completed 200 OK in 77ms (Views: 76.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:18 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (124.5ms) +Completed 200 OK in 126ms (Views: 125.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:20 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (96.0ms) +Completed 200 OK in 98ms (Views: 96.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:22 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (86.6ms) +Completed 200 OK in 88ms (Views: 87.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:23 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (114.7ms) +Completed 200 OK in 116ms (Views: 115.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:28 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (66.1ms) +Completed 200 OK in 67ms (Views: 66.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:30 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (70.9ms) +Completed 200 OK in 72ms (Views: 71.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:31 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (66.3ms) +Completed 200 OK in 67ms (Views: 66.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:39 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (765.6ms) +Completed 200 OK in 769ms (Views: 766.8ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-20 11:09:39 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-20 11:09:39 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-20 11:09:39 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-20 11:09:39 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-20 11:09:39 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:42 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.3ms) +Completed 200 OK in 25ms (Views: 24.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:43 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.7ms) +Completed 200 OK in 25ms (Views: 24.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:44 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.8ms) +Completed 200 OK in 27ms (Views: 26.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:45 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (26.3ms) +Completed 200 OK in 27ms (Views: 26.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:46 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1513786186.666919 ********************************************* + Rendered inline template (292.2ms) +Completed 200 OK in 293ms (Views: 292.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:47 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (23.4ms) +Completed 200 OK in 71ms (Views: 67.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:48 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (45.4ms) +Completed 200 OK in 46ms (Views: 45.6ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2017-12-20 11:09:48 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:49 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (30.1ms) +Completed 200 OK in 31ms (Views: 30.4ms) +Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2017-12-20 11:09:49 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:50 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (34.8ms) +Completed 200 OK in 35ms (Views: 35.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:54 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (55.9ms) +Completed 200 OK in 57ms (Views: 56.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:55 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (35.3ms) +Completed 200 OK in 36ms (Views: 35.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:56 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (44.1ms) +Completed 200 OK in 45ms (Views: 44.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:57 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (48.7ms) +Completed 200 OK in 50ms (Views: 48.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:01 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.5ms) +Completed 200 OK in 26ms (Views: 25.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:03 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.5ms) +Completed 200 OK in 26ms (Views: 25.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:04 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (32.6ms) +Completed 200 OK in 33ms (Views: 32.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:33 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (710.7ms) +Completed 200 OK in 714ms (Views: 711.9ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-20 11:10:34 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-20 11:10:34 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-20 11:10:34 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-20 11:10:34 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-20 11:10:34 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:35 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (26.6ms) +Completed 200 OK in 27ms (Views: 26.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:36 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.5ms) +Completed 200 OK in 26ms (Views: 25.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:37 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (22.9ms) +Completed 200 OK in 24ms (Views: 23.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:38 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.6ms) +Completed 200 OK in 25ms (Views: 24.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:39 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1513786239.469022 ********************************************* + Rendered inline template (269.5ms) +Completed 200 OK in 270ms (Views: 269.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:40 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (5.5ms) +Completed 200 OK in 26ms (Views: 26.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:41 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (30.5ms) +Completed 200 OK in 31ms (Views: 30.8ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2017-12-20 11:10:41 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:42 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.7ms) +Completed 200 OK in 43ms (Views: 43.0ms) +Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2017-12-20 11:10:42 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:43 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (26.6ms) +Completed 200 OK in 27ms (Views: 26.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:46 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (26.2ms) +Completed 200 OK in 27ms (Views: 26.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:47 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.1ms) +Completed 200 OK in 26ms (Views: 25.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:48 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (32.2ms) +Completed 200 OK in 33ms (Views: 32.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:49 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (26.4ms) +Completed 200 OK in 27ms (Views: 26.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:53 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.8ms) +Completed 200 OK in 42ms (Views: 42.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:55 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.7ms) +Completed 200 OK in 26ms (Views: 26.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:56 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.3ms) +Completed 200 OK in 25ms (Views: 24.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:47 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (809.3ms) +Completed 200 OK in 813ms (Views: 810.6ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 12:56:48 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 12:56:48 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 12:56:48 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 12:56:48 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 12:56:48 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:49 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (26.2ms) +Completed 200 OK in 27ms (Views: 26.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:50 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (23.4ms) +Completed 200 OK in 24ms (Views: 23.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:51 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.4ms) +Completed 200 OK in 25ms (Views: 24.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:52 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.7ms) +Completed 200 OK in 25ms (Views: 25.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:53 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1513879013.711444 ********************************************* + Rendered inline template (281.3ms) +Completed 200 OK in 282ms (Views: 281.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:54 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (10.1ms) +Completed 200 OK in 38ms (Views: 37.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:55 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (26.9ms) +Completed 200 OK in 28ms (Views: 27.2ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2017-12-21 12:56:55 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:56 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.5ms) +Completed 200 OK in 42ms (Views: 41.8ms) +Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2017-12-21 12:56:56 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:57 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (28.4ms) +Completed 200 OK in 29ms (Views: 28.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:00 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.1ms) +Completed 200 OK in 26ms (Views: 25.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:01 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.8ms) +Completed 200 OK in 25ms (Views: 25.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:02 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.5ms) +Completed 200 OK in 26ms (Views: 25.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:03 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.1ms) +Completed 200 OK in 26ms (Views: 25.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:07 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.7ms) +Completed 200 OK in 41ms (Views: 41.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:09 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.0ms) +Completed 200 OK in 26ms (Views: 25.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:10 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.3ms) +Completed 200 OK in 26ms (Views: 25.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:28:05 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (772.7ms) +Completed 200 OK in 776ms (Views: 774.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 13:28:06 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 13:28:06 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 13:28:06 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 13:28:06 -0500 +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 13:28:11 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:28:56 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (28.5ms) +Completed 200 OK in 29ms (Views: 28.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:28:57 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (28.1ms) +Completed 200 OK in 29ms (Views: 28.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:28:58 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.1ms) +Completed 200 OK in 26ms (Views: 25.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:28:59 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.7ms) +Completed 200 OK in 26ms (Views: 25.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:00 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1513880940.7192802 ********************************************* + Rendered inline template (267.9ms) +Completed 200 OK in 269ms (Views: 268.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:01 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (7.1ms) +Completed 200 OK in 29ms (Views: 29.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:02 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (49.8ms) +Completed 200 OK in 50ms (Views: 50.0ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2017-12-21 13:29:02 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:03 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (31.1ms) +Completed 200 OK in 32ms (Views: 31.4ms) +Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2017-12-21 13:29:03 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:04 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (32.2ms) +Completed 200 OK in 33ms (Views: 32.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:07 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.2ms) +Completed 200 OK in 42ms (Views: 41.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:08 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (37.4ms) +Completed 200 OK in 38ms (Views: 37.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:10 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (61.8ms) +Completed 200 OK in 63ms (Views: 62.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:11 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (52.5ms) +Completed 200 OK in 53ms (Views: 52.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:15 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (32.0ms) +Completed 200 OK in 33ms (Views: 32.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:16 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.3ms) +Completed 200 OK in 26ms (Views: 25.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:17 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (23.2ms) +Completed 200 OK in 24ms (Views: 23.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:36 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (745.6ms) +Completed 200 OK in 750ms (Views: 747.7ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 13:29:37 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 13:29:37 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 13:29:37 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 13:29:37 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 13:29:37 -0500 +Started GET "/" for 127.0.0.1 at 2017-12-21 14:27:30 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 14:39:41 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (839.8ms) +Completed 200 OK in 843ms (Views: 841.1ms) +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 14:39:42 -0500 +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 14:39:42 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 14:39:42 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 14:39:42 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 14:39:42 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 14:40:07 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (695.7ms) +Completed 200 OK in 698ms (Views: 696.6ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 14:40:08 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 14:40:08 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 14:40:08 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 14:40:08 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 14:40:08 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 14:43:06 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (627.0ms) +Completed 200 OK in 630ms (Views: 628.1ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 14:43:06 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 14:43:06 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 14:43:06 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 14:43:06 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 14:43:06 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 14:48:10 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (970.2ms) +Completed 200 OK in 975ms (Views: 972.1ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 14:48:11 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 14:48:11 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 14:48:11 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 14:48:11 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 14:48:11 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 14:59:06 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (747.8ms) +Completed 200 OK in 752ms (Views: 749.2ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 14:59:06 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 14:59:06 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 14:59:06 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 14:59:06 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 14:59:06 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 15:14:18 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (770.8ms) +Completed 200 OK in 774ms (Views: 772.1ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 15:14:19 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 15:14:19 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 15:14:19 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 15:14:19 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 15:14:19 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 15:18:38 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (750.5ms) +Completed 200 OK in 754ms (Views: 751.7ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 15:18:38 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 15:18:38 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 15:18:38 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 15:18:38 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 15:18:38 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 15:19:05 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (721.8ms) +Completed 200 OK in 724ms (Views: 722.8ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 15:19:06 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 15:19:06 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 15:19:06 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 15:19:06 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 15:19:06 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 15:30:57 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (807.5ms) +Completed 200 OK in 811ms (Views: 808.8ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 15:30:58 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 15:30:58 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 15:30:58 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 15:30:58 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 15:30:58 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 16:36:50 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (783.7ms) +Completed 200 OK in 788ms (Views: 785.2ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 16:36:51 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 16:36:51 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 16:36:51 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 16:36:51 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 16:36:51 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 16:59:51 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (757.5ms) +Completed 200 OK in 760ms (Views: 758.6ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 16:59:52 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 16:59:52 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 16:59:52 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 16:59:52 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 16:59:52 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 17:16:10 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (742.3ms) +Completed 200 OK in 745ms (Views: 743.3ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 17:16:10 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 17:16:10 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 17:16:10 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 17:16:10 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 17:16:10 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 17:17:29 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (877.0ms) +Completed 200 OK in 880ms (Views: 878.0ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 17:17:30 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 17:17:30 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 17:17:30 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 17:17:30 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 17:17:30 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 17:18:44 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (707.9ms) +Completed 200 OK in 710ms (Views: 709.2ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 17:18:45 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 17:18:45 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 17:18:45 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 17:18:45 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 17:18:45 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 17:19:07 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (692.7ms) +Completed 200 OK in 695ms (Views: 693.6ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 17:19:07 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 17:19:07 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 17:19:07 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 17:19:07 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 17:19:07 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 17:20:14 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (690.8ms) +Completed 200 OK in 694ms (Views: 691.9ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 17:20:14 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 17:20:14 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 17:20:14 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 17:20:14 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 17:20:14 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 17:24:23 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (837.0ms) +Completed 200 OK in 841ms (Views: 838.7ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 17:24:24 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 17:24:24 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 17:24:24 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 17:24:24 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 17:24:24 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 09:42:55 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (751.6ms) +Completed 200 OK in 755ms (Views: 752.9ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 09:42:56 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 09:42:56 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 09:42:56 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 09:42:56 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 09:42:56 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 09:44:37 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (726.8ms) +Completed 200 OK in 730ms (Views: 727.9ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 09:44:38 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 09:44:38 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 09:44:38 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 09:44:38 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 09:44:38 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 09:47:33 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (797.9ms) +Completed 200 OK in 802ms (Views: 799.6ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 09:47:34 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 09:47:34 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 09:47:34 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 09:47:34 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 09:47:34 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 09:48:46 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (758.2ms) +Completed 200 OK in 761ms (Views: 759.7ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 09:48:47 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 09:48:47 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 09:48:47 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 09:48:47 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 09:48:47 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 09:52:10 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (729.4ms) +Completed 200 OK in 744ms (Views: 730.5ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 09:52:11 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 09:52:11 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 09:52:11 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 09:52:11 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 09:52:11 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:05:12 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (806.5ms) +Completed 200 OK in 812ms (Views: 808.8ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:05:13 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:05:13 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:05:13 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:05:13 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:05:13 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:05:57 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (736.9ms) +Completed 200 OK in 750ms (Views: 738.1ms) +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:05:58 -0500 +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:05:58 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:05:58 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:05:58 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:05:58 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:09:02 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (748.4ms) +Completed 200 OK in 751ms (Views: 749.5ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:09:03 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:09:03 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:09:03 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:09:03 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:09:03 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:10:20 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (748.5ms) +Completed 200 OK in 752ms (Views: 749.7ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:10:21 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:10:21 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:10:21 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:10:21 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:10:21 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:11:51 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (706.4ms) +Completed 200 OK in 709ms (Views: 707.6ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:11:51 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:11:51 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:11:51 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:11:51 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:11:51 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:12:17 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (578.1ms) +Completed 200 OK in 580ms (Views: 579.1ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:12:18 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:12:18 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:12:18 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:12:18 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:12:18 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:13:17 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (724.2ms) +Completed 200 OK in 727ms (Views: 725.1ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:13:18 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:13:18 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:13:18 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:13:18 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:13:18 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:38:30 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (848.5ms) +Completed 200 OK in 852ms (Views: 849.7ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:38:30 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:38:30 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:38:30 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:38:31 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:38:31 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:39:09 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (676.9ms) +Completed 200 OK in 680ms (Views: 678.5ms) +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:39:10 -0500 +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:39:10 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:39:10 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:39:10 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:39:10 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:40:14 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (770.6ms) +Completed 200 OK in 774ms (Views: 771.8ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:40:15 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:40:15 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:40:15 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:40:15 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:40:15 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:21:18 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515097279.6067069 ********************************************* + Rendered inline template (1116.2ms) +Completed 200 OK in 1120ms (Views: 1117.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:21:19 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:21:19 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:22:23 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515097344.564832 ********************************************* + Rendered inline template (937.9ms) +Completed 200 OK in 941ms (Views: 939.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:22:24 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:22:24 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:23:49 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515097430.241463 ********************************************* + Rendered inline template (969.5ms) +Completed 200 OK in 972ms (Views: 970.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:23:50 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:23:50 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:24:39 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515097480.880393 ********************************************* + Rendered inline template (957.6ms) +Completed 200 OK in 960ms (Views: 958.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:24:40 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:24:40 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:25:33 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515097533.952251 ********************************************* + Rendered inline template (920.9ms) +Completed 200 OK in 924ms (Views: 922.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:25:33 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:25:33 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:27:30 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515097651.7302551 ********************************************* + Rendered inline template (919.5ms) +Completed 200 OK in 922ms (Views: 920.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:27:31 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:27:31 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:13 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (692.2ms) +Completed 200 OK in 695ms (Views: 693.4ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 15:45:13 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 15:45:13 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:45:13 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:45:13 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 15:45:13 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:25 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (63.2ms) +Completed 200 OK in 64ms (Views: 63.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:26 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (54.3ms) +Completed 200 OK in 56ms (Views: 54.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:27 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (44.7ms) +Completed 200 OK in 46ms (Views: 44.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:29 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.8ms) +Completed 200 OK in 26ms (Views: 25.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:30 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515098730.510491 ********************************************* + Rendered inline template (225.0ms) +Completed 200 OK in 226ms (Views: 225.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:31 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (8.0ms) +Completed 200 OK in 29ms (Views: 28.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:32 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (33.1ms) +Completed 200 OK in 34ms (Views: 33.4ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 15:45:32 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:33 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (27.8ms) +Completed 200 OK in 30ms (Views: 29.8ms) +Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 15:45:33 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:35 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (30.5ms) +Completed 200 OK in 31ms (Views: 30.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:38 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (30.0ms) +Completed 200 OK in 31ms (Views: 30.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:40 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.0ms) +Completed 200 OK in 25ms (Views: 24.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:41 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (32.4ms) +Completed 200 OK in 33ms (Views: 32.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:43 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.4ms) +Completed 200 OK in 25ms (Views: 24.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:47 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (23.4ms) +Completed 200 OK in 24ms (Views: 23.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:49 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.0ms) +Completed 200 OK in 25ms (Views: 24.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:50 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.6ms) +Completed 200 OK in 44ms (Views: 43.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:51:28 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (715.6ms) +Completed 200 OK in 719ms (Views: 716.8ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 15:51:28 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 15:51:28 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:51:28 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 15:51:28 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:51:28 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:54:06 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515099247.15755 ********************************************* + Rendered inline template (922.7ms) +Completed 200 OK in 926ms (Views: 924.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:54:07 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:54:07 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:54:58 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515099299.456007 ********************************************* + Rendered inline template (938.4ms) +Completed 200 OK in 941ms (Views: 939.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:54:59 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:54:59 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:56:45 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515099406.724363 ********************************************* + Rendered inline template (927.4ms) +Completed 200 OK in 931ms (Views: 928.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:56:46 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:56:46 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:57:46 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515099466.894321 ********************************************* + Rendered inline template (857.4ms) +Completed 200 OK in 860ms (Views: 858.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:57:46 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:57:46 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:30 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (670.8ms) +Completed 200 OK in 674ms (Views: 672.2ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 15:59:31 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:59:31 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 15:59:31 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:59:31 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 15:59:31 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:32 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (27.5ms) +Completed 200 OK in 28ms (Views: 27.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:33 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (23.6ms) +Completed 200 OK in 25ms (Views: 23.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:34 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.1ms) +Completed 200 OK in 25ms (Views: 24.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:35 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (22.6ms) +Completed 200 OK in 23ms (Views: 22.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:36 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515099577.02159 ********************************************* + Rendered inline template (222.0ms) +Completed 200 OK in 223ms (Views: 222.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:37 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (5.8ms) +Completed 200 OK in 26ms (Views: 25.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:38 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (27.0ms) +Completed 200 OK in 28ms (Views: 27.3ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 15:59:39 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:40 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (23.4ms) +Completed 200 OK in 24ms (Views: 23.7ms) +Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 15:59:40 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:41 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (34.3ms) +Completed 200 OK in 35ms (Views: 34.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:44 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (26.1ms) +Completed 200 OK in 27ms (Views: 26.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:45 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (34.7ms) +Completed 200 OK in 35ms (Views: 35.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:47 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (51.6ms) +Completed 200 OK in 52ms (Views: 51.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:48 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.8ms) +Completed 200 OK in 41ms (Views: 40.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:52 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (32.4ms) +Completed 200 OK in 33ms (Views: 32.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:54 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (37.9ms) +Completed 200 OK in 39ms (Views: 38.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:55 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.7ms) +Completed 200 OK in 41ms (Views: 40.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:30 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (711.4ms) +Completed 200 OK in 714ms (Views: 712.5ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 16:01:30 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 16:01:30 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 16:01:30 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 16:01:30 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 16:01:30 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:32 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (23.4ms) +Completed 200 OK in 24ms (Views: 23.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:33 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (30.2ms) +Completed 200 OK in 31ms (Views: 30.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:34 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (22.6ms) +Completed 200 OK in 23ms (Views: 22.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:35 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.2ms) +Completed 200 OK in 25ms (Views: 24.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:37 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515099697.216854 ********************************************* + Rendered inline template (224.5ms) +Completed 200 OK in 225ms (Views: 224.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:38 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (5.7ms) +Completed 200 OK in 25ms (Views: 24.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:39 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (32.3ms) +Completed 200 OK in 33ms (Views: 32.6ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 16:01:39 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:40 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (46.6ms) +Completed 200 OK in 47ms (Views: 46.8ms) +Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 16:01:40 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:41 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (34.5ms) +Completed 200 OK in 35ms (Views: 34.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:45 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (32.7ms) +Completed 200 OK in 33ms (Views: 33.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:46 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (37.5ms) +Completed 200 OK in 38ms (Views: 37.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:48 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.4ms) +Completed 200 OK in 41ms (Views: 40.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:49 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (45.8ms) +Completed 200 OK in 46ms (Views: 46.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:54 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (26.0ms) +Completed 200 OK in 27ms (Views: 26.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:56 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.6ms) +Completed 200 OK in 25ms (Views: 24.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:57 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.1ms) +Completed 200 OK in 26ms (Views: 25.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:38:54 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (744.4ms) +Completed 200 OK in 748ms (Views: 746.0ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 16:38:54 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 16:38:54 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 16:38:54 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 16:38:54 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 16:38:54 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:38:56 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (30.2ms) +Completed 200 OK in 31ms (Views: 30.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:38:57 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (23.7ms) +Completed 200 OK in 24ms (Views: 24.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:38:58 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (22.7ms) +Completed 200 OK in 23ms (Views: 22.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:38:59 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (23.9ms) +Completed 200 OK in 25ms (Views: 24.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:00 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515101941.1815119 ********************************************* + Rendered inline template (230.2ms) +Completed 200 OK in 231ms (Views: 230.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:02 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (6.4ms) +Completed 200 OK in 27ms (Views: 26.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:03 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.1ms) +Completed 200 OK in 26ms (Views: 25.3ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 16:39:03 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:04 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (46.2ms) +Completed 200 OK in 47ms (Views: 46.4ms) +Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 16:39:04 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:05 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.2ms) +Completed 200 OK in 25ms (Views: 24.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:09 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (30.0ms) +Completed 200 OK in 31ms (Views: 30.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:10 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (23.2ms) +Completed 200 OK in 24ms (Views: 23.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:12 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (29.1ms) +Completed 200 OK in 30ms (Views: 29.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:13 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (31.9ms) +Completed 200 OK in 33ms (Views: 32.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:17 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.7ms) +Completed 200 OK in 44ms (Views: 44.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:20 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (23.8ms) +Completed 200 OK in 24ms (Views: 24.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:21 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.1ms) +Completed 200 OK in 26ms (Views: 25.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:41:59 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (706.5ms) +Completed 200 OK in 709ms (Views: 707.6ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 16:42:00 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 16:42:00 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 16:42:00 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 16:42:00 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 16:42:00 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:01 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.2ms) +Completed 200 OK in 26ms (Views: 25.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:03 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.1ms) +Completed 200 OK in 25ms (Views: 24.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:04 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.8ms) +Completed 200 OK in 25ms (Views: 25.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:05 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (26.1ms) +Completed 200 OK in 27ms (Views: 26.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:06 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515102126.379314 ********************************************* + Rendered inline template (227.2ms) +Completed 200 OK in 228ms (Views: 227.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:07 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (6.4ms) +Completed 200 OK in 27ms (Views: 26.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:08 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (22.8ms) +Completed 200 OK in 24ms (Views: 23.1ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 16:42:08 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:09 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (46.0ms) +Completed 200 OK in 47ms (Views: 46.3ms) +Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 16:42:09 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:10 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (26.6ms) +Completed 200 OK in 27ms (Views: 26.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:13 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.3ms) +Completed 200 OK in 26ms (Views: 25.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:15 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (23.7ms) +Completed 200 OK in 24ms (Views: 23.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:16 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (27.1ms) +Completed 200 OK in 28ms (Views: 27.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:17 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (24.0ms) +Completed 200 OK in 25ms (Views: 24.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:21 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.5ms) +Completed 200 OK in 42ms (Views: 41.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:23 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (27.1ms) +Completed 200 OK in 28ms (Views: 27.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:24 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (23.5ms) +Completed 200 OK in 24ms (Views: 23.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:36 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (3972.1ms) +Completed 200 OK in 3976ms (Views: 3973.7ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 16:46:40 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 16:46:40 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 16:46:40 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 16:46:40 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 16:46:40 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:41 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (32.7ms) +Completed 200 OK in 33ms (Views: 32.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:43 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (66.8ms) +Completed 200 OK in 67ms (Views: 67.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:44 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (36.7ms) +Completed 200 OK in 37ms (Views: 37.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:45 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (52.6ms) +Completed 200 OK in 53ms (Views: 52.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:46 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515102407.209289 ********************************************* + Rendered inline template (475.4ms) +Completed 200 OK in 476ms (Views: 475.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:48 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (64.3ms) +Completed 200 OK in 87ms (Views: 86.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:49 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (29.0ms) +Completed 200 OK in 30ms (Views: 29.2ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 16:46:49 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:50 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (28.8ms) +Completed 200 OK in 29ms (Views: 29.1ms) +Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 16:46:50 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:51 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (63.1ms) +Completed 200 OK in 64ms (Views: 63.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:55 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.0ms) +Completed 200 OK in 42ms (Views: 41.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:56 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.9ms) +Completed 200 OK in 43ms (Views: 42.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:58 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.7ms) +Completed 200 OK in 26ms (Views: 26.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:59 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.9ms) +Completed 200 OK in 27ms (Views: 26.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:47:04 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.3ms) +Completed 200 OK in 26ms (Views: 25.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:47:06 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (25.2ms) +Completed 200 OK in 26ms (Views: 25.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:47:07 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (26.8ms) +Completed 200 OK in 27ms (Views: 27.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:32 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (765.8ms) +Completed 200 OK in 768ms (Views: 766.9ms) +Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 16:50:33 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 16:50:33 -0500 +Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 16:50:33 -0500 +Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 16:50:33 -0500 +Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 16:50:33 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:34 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (28.5ms) +Completed 200 OK in 29ms (Views: 28.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:35 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (31.4ms) +Completed 200 OK in 32ms (Views: 31.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:36 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (60.4ms) +Completed 200 OK in 61ms (Views: 60.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:37 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.1ms) +Completed 200 OK in 41ms (Views: 40.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:38 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1515102639.173713 ********************************************* + Rendered inline template (257.9ms) +Completed 200 OK in 259ms (Views: 258.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:40 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (11.5ms) +Completed 200 OK in 60ms (Views: 59.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:41 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (55.1ms) +Completed 200 OK in 56ms (Views: 55.4ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 16:50:41 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:42 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (47.3ms) +Completed 200 OK in 48ms (Views: 47.5ms) +Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 16:50:42 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:43 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (87.2ms) +Completed 200 OK in 88ms (Views: 87.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:46 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (56.8ms) +Completed 200 OK in 57ms (Views: 57.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:48 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.8ms) +Completed 200 OK in 40ms (Views: 40.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:49 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (31.6ms) +Completed 200 OK in 32ms (Views: 31.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:50 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (28.6ms) +Completed 200 OK in 29ms (Views: 28.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:54 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (31.4ms) +Completed 200 OK in 32ms (Views: 31.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:56 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (26.3ms) +Completed 200 OK in 27ms (Views: 26.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:57 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (29.7ms) +Completed 200 OK in 30ms (Views: 30.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:32 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (6270.8ms) +Completed 200 OK in 6274ms (Views: 6272.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-02-13 15:37:38 -0500 +Started GET "/assets/application-b044f9d6152cf53a8dd815577b520b126ecf172e701819d44d566cfc7c762d25.js" for 127.0.0.1 at 2018-02-13 15:37:38 -0500 +Started GET "/assets/time_cop-97f63d94c86668016515ef46698c61321506fd47149ea9533c0e712bcce832be.js" for 127.0.0.1 at 2018-02-13 15:37:38 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:39 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (35.2ms) +Completed 200 OK in 36ms (Views: 35.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:40 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (59.6ms) +Completed 200 OK in 60ms (Views: 59.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:41 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (63.2ms) +Completed 200 OK in 64ms (Views: 63.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:42 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (75.2ms) +Completed 200 OK in 76ms (Views: 75.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:42 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1518554263.582933 ********************************************* + Rendered inline template (643.5ms) +Completed 200 OK in 644ms (Views: 643.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:44 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (8.5ms) +Completed 200 OK in 49ms (Views: 48.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:44 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (70.2ms) +Completed 200 OK in 71ms (Views: 70.5ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-02-13 15:37:45 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:45 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (78.0ms) +Completed 200 OK in 79ms (Views: 78.4ms) +Started GET "/assets/factorial-34f521ac9122445e4a1f18b495e7bb8bc4b178951451e73487d672303f527893.js" for 127.0.0.1 at 2018-02-13 15:37:45 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:46 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.6ms) +Completed 200 OK in 43ms (Views: 42.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:49 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.0ms) +Completed 200 OK in 39ms (Views: 38.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:50 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.2ms) +Completed 200 OK in 42ms (Views: 41.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:51 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.6ms) +Completed 200 OK in 43ms (Views: 42.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:52 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.1ms) +Completed 200 OK in 41ms (Views: 40.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:56 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.7ms) +Completed 200 OK in 40ms (Views: 40.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:58 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.6ms) +Completed 200 OK in 40ms (Views: 40.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:58 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (59.2ms) +Completed 200 OK in 60ms (Views: 59.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:17 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (6407.1ms) +Completed 200 OK in 6410ms (Views: 6408.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-02-15 13:02:23 -0500 +Started GET "/assets/time_cop-97f63d94c86668016515ef46698c61321506fd47149ea9533c0e712bcce832be.js" for 127.0.0.1 at 2018-02-15 13:02:23 -0500 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-02-15 13:02:23 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:24 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (59.9ms) +Completed 200 OK in 60ms (Views: 60.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:25 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (48.3ms) +Completed 200 OK in 49ms (Views: 48.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:26 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (76.3ms) +Completed 200 OK in 77ms (Views: 76.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:27 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (49.5ms) +Completed 200 OK in 50ms (Views: 49.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:28 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1518717748.931067 ********************************************* + Rendered inline template (835.8ms) +Completed 200 OK in 836ms (Views: 836.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:29 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (4.6ms) +Completed 200 OK in 46ms (Views: 45.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:30 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.1ms) +Completed 200 OK in 44ms (Views: 43.4ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-02-15 13:02:30 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:31 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.6ms) +Completed 200 OK in 42ms (Views: 41.9ms) +Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-02-15 13:02:31 -0500 +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:31 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (47.4ms) +Completed 200 OK in 48ms (Views: 47.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:34 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (48.0ms) +Completed 200 OK in 49ms (Views: 48.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:35 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (37.5ms) +Completed 200 OK in 38ms (Views: 37.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:36 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (37.1ms) +Completed 200 OK in 38ms (Views: 37.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:37 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (37.7ms) +Completed 200 OK in 38ms (Views: 38.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:41 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (51.0ms) +Completed 200 OK in 52ms (Views: 51.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:43 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.5ms) +Completed 200 OK in 39ms (Views: 38.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:44 -0500 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.6ms) +Completed 200 OK in 40ms (Views: 39.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:25 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (7065.4ms) +Completed 200 OK in 7069ms (Views: 7066.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 15:41:32 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 15:41:32 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:33 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (79.1ms) +Completed 200 OK in 80ms (Views: 79.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:34 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (46.1ms) +Completed 200 OK in 47ms (Views: 46.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:35 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (44.2ms) +Completed 200 OK in 45ms (Views: 44.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:36 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (50.3ms) +Completed 200 OK in 51ms (Views: 50.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:37 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1521747697.8567848 ********************************************* + Rendered inline template (690.2ms) +Completed 200 OK in 691ms (Views: 690.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:38 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (4.5ms) +Completed 200 OK in 57ms (Views: 56.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:39 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (52.6ms) +Completed 200 OK in 53ms (Views: 52.9ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-22 15:41:39 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:39 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (44.6ms) +Completed 200 OK in 45ms (Views: 44.8ms) +Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-22 15:41:39 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:41 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (56.7ms) +Completed 200 OK in 58ms (Views: 57.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:44 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (46.9ms) +Completed 200 OK in 48ms (Views: 47.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:45 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (44.1ms) +Completed 200 OK in 45ms (Views: 44.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:46 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (49.0ms) +Completed 200 OK in 50ms (Views: 49.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:41:46 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (0.0ms) +Completed 200 OK in 0ms (Views: 45.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2016-03-22 15:41:47 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (54.0ms) +Completed 200 OK in 55ms (Views: 54.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2015-03-22 15:42:01 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (3613.1ms) +Completed 200 OK in 3657ms (Views: 60.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2016-03-22 15:42:33 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (0.0ms) +Completed 200 OK in 0ms (Views: 48.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:27 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (650.0ms) +Completed 200 OK in 653ms (Views: 651.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 15:45:27 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 15:45:27 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:47 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (612.1ms) +Completed 200 OK in 614ms (Views: 613.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 15:45:47 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 15:45:47 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:48 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (97.0ms) +Completed 200 OK in 98ms (Views: 97.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:49 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (47.8ms) +Completed 200 OK in 49ms (Views: 48.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:50 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.0ms) +Completed 200 OK in 44ms (Views: 43.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:51 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (45.6ms) +Completed 200 OK in 46ms (Views: 45.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:52 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1521747952.304493 ********************************************* + Rendered inline template (298.4ms) +Completed 200 OK in 299ms (Views: 298.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:52 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (4.0ms) +Completed 200 OK in 46ms (Views: 45.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:53 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (46.2ms) +Completed 200 OK in 47ms (Views: 46.5ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-22 15:45:53 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:54 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.8ms) +Completed 200 OK in 42ms (Views: 42.1ms) +Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-22 15:45:54 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:55 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (44.5ms) +Completed 200 OK in 45ms (Views: 44.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:58 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (56.6ms) +Completed 200 OK in 57ms (Views: 56.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:46:01 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.2ms) +Completed 200 OK in 43ms (Views: 42.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:46:02 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.2ms) +Completed 200 OK in 44ms (Views: 43.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:46:03 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.2ms) +Completed 200 OK in 44ms (Views: 43.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:46:03 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (0.0ms) +Completed 200 OK in 0ms (Views: 56.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2016-03-22 15:46:03 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (46.2ms) +Completed 200 OK in 47ms (Views: 46.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2015-03-22 15:46:18 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (3623.8ms) +Completed 200 OK in 3667ms (Views: 60.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2016-03-22 15:46:49 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (0.0ms) +Completed 200 OK in 0ms (Views: 45.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:57:32 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (658.2ms) +Completed 200 OK in 661ms (Views: 659.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 15:57:33 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 15:57:33 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 16:00:09 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (617.4ms) +Completed 200 OK in 620ms (Views: 618.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 16:00:10 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 16:00:10 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 16:03:42 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (626.0ms) +Completed 200 OK in 630ms (Views: 627.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 16:03:43 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 16:03:43 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 16:07:32 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (609.5ms) +Completed 200 OK in 613ms (Views: 610.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 16:07:33 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 16:07:33 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:11:32 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (682.1ms) +Completed 200 OK in 686ms (Views: 683.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:11:32 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:11:32 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:12:31 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (641.5ms) +Completed 200 OK in 646ms (Views: 643.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:12:31 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:12:31 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:19:12 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (606.3ms) +Completed 200 OK in 610ms (Views: 608.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:19:13 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:19:13 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:23:03 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (655.5ms) +Completed 200 OK in 660ms (Views: 657.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:23:04 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:23:04 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:31:49 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (605.1ms) +Completed 200 OK in 609ms (Views: 606.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:31:50 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:31:50 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:34:30 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (531.3ms) +Completed 200 OK in 534ms (Views: 532.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:34:30 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:34:30 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:37:25 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (600.1ms) +Completed 200 OK in 603ms (Views: 601.1ms) +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:37:26 -0400 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:37:26 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:39:55 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (370.1ms) +Completed 200 OK in 375ms (Views: 371.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:30:07 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (382.1ms) +Completed 200 OK in 385ms (Views: 383.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:31:32 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (597.4ms) +Completed 200 OK in 600ms (Views: 598.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:31:32 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:31:32 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:37:11 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (612.5ms) +Completed 200 OK in 616ms (Views: 613.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:37:12 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:37:12 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:44:09 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (591.7ms) +Completed 200 OK in 595ms (Views: 592.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:44:09 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:44:09 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:45:22 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (646.8ms) +Completed 200 OK in 651ms (Views: 647.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:45:22 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:45:22 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:47:31 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (586.3ms) +Completed 200 OK in 590ms (Views: 587.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:47:32 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:47:32 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:50:53 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (577.5ms) +Completed 200 OK in 581ms (Views: 579.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:50:54 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:50:54 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:53:23 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (787.1ms) +Completed 200 OK in 791ms (Views: 788.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:53:24 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:53:24 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:02:32 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (716.6ms) +Completed 200 OK in 720ms (Views: 717.8ms) +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:02:33 -0400 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:02:33 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:10:05 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1483.4ms) +Completed 200 OK in 1487ms (Views: 1484.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:10:06 -0400 +Started GET "/assets/application-941ba97e4e8194486e5ad248cbd91af62f0106da5e38ed2bb8c424fb5706c013.js" for 127.0.0.1 at 2018-03-23 09:10:06 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:27:45 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (734.1ms) +Completed 200 OK in 738ms (Views: 735.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:27:46 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:27:46 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2017-03-23 09:27:53 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (0.0ms) +Completed 200 OK in 0ms (Views: 42.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2016-03-23 09:27:56 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (76.8ms) +Completed 200 OK in 78ms (Views: 77.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2015-03-23 09:32:03 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (2739.4ms) +Completed 200 OK in 2777ms (Views: 46.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2016-03-23 09:32:43 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (0.0ms) +Completed 200 OK in 0ms (Views: 39.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:29:34 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (586.5ms) +Completed 200 OK in 591ms (Views: 588.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:29:35 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:29:35 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:33:24 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (690.2ms) +Completed 200 OK in 694ms (Views: 691.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:33:24 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:33:24 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:37:14 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (692.4ms) +Completed 200 OK in 696ms (Views: 693.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:37:15 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:37:15 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:39:31 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (629.8ms) +Completed 200 OK in 633ms (Views: 631.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:39:32 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:39:32 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:42:07 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (755.1ms) +Completed 200 OK in 761ms (Views: 757.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:42:08 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:42:08 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:42:33 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (589.5ms) +Completed 200 OK in 594ms (Views: 591.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:42:33 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:42:33 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:42:34 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (44.6ms) +Completed 200 OK in 45ms (Views: 44.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:42:38 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (72.2ms) +Completed 200 OK in 73ms (Views: 72.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:42:40 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (70.0ms) +Completed 200 OK in 71ms (Views: 70.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:42:41 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (57.5ms) +Completed 200 OK in 58ms (Views: 57.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:33:27 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (6859.7ms) +Completed 200 OK in 6863ms (Views: 6861.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 11:33:34 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 11:33:34 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:33:45 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (638.4ms) +Completed 200 OK in 642ms (Views: 639.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 11:33:46 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 11:33:46 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:33:47 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (46.3ms) +Completed 200 OK in 47ms (Views: 46.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:33:51 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (57.7ms) +Completed 200 OK in 58ms (Views: 58.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:33:53 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (47.8ms) +Completed 200 OK in 48ms (Views: 48.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:33:54 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (74.4ms) +Completed 200 OK in 75ms (Views: 74.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:12 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (556.4ms) +Completed 200 OK in 560ms (Views: 557.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 11:34:12 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 11:34:12 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:13 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.2ms) +Completed 200 OK in 43ms (Views: 42.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:14 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (61.5ms) +Completed 200 OK in 62ms (Views: 61.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:15 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (65.4ms) +Completed 200 OK in 66ms (Views: 65.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:16 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (57.4ms) +Completed 200 OK in 58ms (Views: 57.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:17 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1521819258.640631 ********************************************* + Rendered inline template (887.9ms) +Completed 200 OK in 889ms (Views: 888.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:19 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (2.5ms) +Completed 200 OK in 110ms (Views: 109.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:20 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.8ms) +Completed 200 OK in 41ms (Views: 41.1ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-23 11:34:20 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:21 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (45.0ms) +Completed 200 OK in 46ms (Views: 45.3ms) +Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-23 11:34:21 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:22 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (36.3ms) +Completed 200 OK in 37ms (Views: 36.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:25 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (50.2ms) +Completed 200 OK in 51ms (Views: 50.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:28 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.5ms) +Completed 200 OK in 41ms (Views: 40.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:29 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.3ms) +Completed 200 OK in 40ms (Views: 39.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:31 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.4ms) +Completed 200 OK in 41ms (Views: 40.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:32 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (51.2ms) +Completed 200 OK in 52ms (Views: 51.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:36 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.9ms) +Completed 200 OK in 43ms (Views: 42.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:38 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.1ms) +Completed 200 OK in 42ms (Views: 41.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:39 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.4ms) +Completed 200 OK in 42ms (Views: 41.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:31 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (548.1ms) +Completed 200 OK in 551ms (Views: 549.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 11:37:32 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 11:37:32 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:33 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (61.5ms) +Completed 200 OK in 62ms (Views: 61.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:34 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (44.0ms) +Completed 200 OK in 45ms (Views: 44.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:35 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (76.7ms) +Completed 200 OK in 77ms (Views: 77.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:35 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (62.5ms) +Completed 200 OK in 64ms (Views: 62.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:36 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1521819456.811229 ********************************************* + Rendered inline template (302.9ms) +Completed 200 OK in 304ms (Views: 303.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:37 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.6ms) +Completed 200 OK in 40ms (Views: 40.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:38 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.6ms) +Completed 200 OK in 43ms (Views: 42.9ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-23 11:37:38 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:38 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (50.7ms) +Completed 200 OK in 51ms (Views: 50.9ms) +Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-23 11:37:38 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:39 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.3ms) +Completed 200 OK in 40ms (Views: 39.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:42 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.0ms) +Completed 200 OK in 43ms (Views: 42.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:45 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.0ms) +Completed 200 OK in 41ms (Views: 40.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:46 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.9ms) +Completed 200 OK in 45ms (Views: 44.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:47 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (54.5ms) +Completed 200 OK in 55ms (Views: 54.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:48 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.2ms) +Completed 200 OK in 41ms (Views: 40.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:52 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.0ms) +Completed 200 OK in 43ms (Views: 42.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:53 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (50.1ms) +Completed 200 OK in 51ms (Views: 50.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:54 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.9ms) +Completed 200 OK in 41ms (Views: 40.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:01 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (560.6ms) +Completed 200 OK in 563ms (Views: 561.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 13:54:02 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 13:54:02 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:03 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (45.2ms) +Completed 200 OK in 46ms (Views: 45.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:04 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (64.4ms) +Completed 200 OK in 65ms (Views: 64.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:05 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (59.2ms) +Completed 200 OK in 60ms (Views: 59.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:05 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (50.7ms) +Completed 200 OK in 51ms (Views: 50.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:06 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1521827646.859643 ********************************************* + Rendered inline template (333.4ms) +Completed 200 OK in 334ms (Views: 333.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:07 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.9ms) +Completed 200 OK in 50ms (Views: 49.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:08 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (69.4ms) +Completed 200 OK in 70ms (Views: 69.7ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-23 13:54:08 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:08 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (61.2ms) +Completed 200 OK in 62ms (Views: 61.5ms) +Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-23 13:54:09 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:09 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.9ms) +Completed 200 OK in 40ms (Views: 39.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:12 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.0ms) +Completed 200 OK in 42ms (Views: 41.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:15 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (45.0ms) +Completed 200 OK in 46ms (Views: 45.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:16 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (46.6ms) +Completed 200 OK in 47ms (Views: 46.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:17 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.2ms) +Completed 200 OK in 43ms (Views: 42.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:18 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.0ms) +Completed 200 OK in 42ms (Views: 41.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:22 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.6ms) +Completed 200 OK in 42ms (Views: 41.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:24 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.7ms) +Completed 200 OK in 44ms (Views: 43.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:25 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (60.6ms) +Completed 200 OK in 61ms (Views: 60.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:56:47 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (660.8ms) +Completed 200 OK in 664ms (Views: 661.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 13:56:48 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 13:56:48 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:58:45 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (630.0ms) +Completed 200 OK in 633ms (Views: 631.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 13:58:46 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 13:58:46 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:58:47 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (68.3ms) +Completed 200 OK in 69ms (Views: 68.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:58:51 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.9ms) +Completed 200 OK in 44ms (Views: 43.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:58:53 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (79.1ms) +Completed 200 OK in 80ms (Views: 79.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:58:53 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (61.2ms) +Completed 200 OK in 62ms (Views: 61.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:04:23 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (564.9ms) +Completed 200 OK in 568ms (Views: 566.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 14:04:23 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 14:04:23 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:04:24 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (97.1ms) +Completed 200 OK in 98ms (Views: 97.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:04:28 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (50.5ms) +Completed 200 OK in 51ms (Views: 50.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:04:30 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (77.4ms) +Completed 200 OK in 78ms (Views: 77.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:04:31 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (68.2ms) +Completed 200 OK in 69ms (Views: 68.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:02 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (545.1ms) +Completed 200 OK in 549ms (Views: 546.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 14:06:03 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 14:06:03 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:04 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (67.2ms) +Completed 200 OK in 68ms (Views: 67.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:08 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (49.4ms) +Completed 200 OK in 50ms (Views: 49.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:10 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (69.0ms) +Completed 200 OK in 70ms (Views: 69.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:11 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (82.9ms) +Completed 200 OK in 84ms (Views: 83.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:21 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (584.2ms) +Completed 200 OK in 587ms (Views: 585.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 14:06:22 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 14:06:22 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:23 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (64.6ms) +Completed 200 OK in 66ms (Views: 64.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:27 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (50.4ms) +Completed 200 OK in 51ms (Views: 50.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:29 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (79.8ms) +Completed 200 OK in 81ms (Views: 80.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:30 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (74.6ms) +Completed 200 OK in 76ms (Views: 74.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:07:46 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (550.7ms) +Completed 200 OK in 554ms (Views: 551.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 14:07:47 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 14:07:47 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:07:48 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (64.1ms) +Completed 200 OK in 65ms (Views: 64.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:07:52 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.6ms) +Completed 200 OK in 43ms (Views: 42.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:07:54 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (78.4ms) +Completed 200 OK in 79ms (Views: 78.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:07:55 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (73.9ms) +Completed 200 OK in 75ms (Views: 74.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:08:03 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (598.3ms) +Completed 200 OK in 601ms (Views: 599.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 14:08:04 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 14:08:04 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:08:05 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (71.9ms) +Completed 200 OK in 73ms (Views: 72.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:08:09 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (51.8ms) +Completed 200 OK in 53ms (Views: 52.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:08:11 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (81.1ms) +Completed 200 OK in 82ms (Views: 81.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:08:12 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (63.8ms) +Completed 200 OK in 65ms (Views: 64.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:20 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (612.1ms) +Completed 200 OK in 615ms (Views: 613.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 17:13:20 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 17:13:20 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:21 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (59.5ms) +Completed 200 OK in 60ms (Views: 59.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:22 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (45.2ms) +Completed 200 OK in 46ms (Views: 45.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:23 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (94.6ms) +Completed 200 OK in 96ms (Views: 95.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:24 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (67.5ms) +Completed 200 OK in 69ms (Views: 67.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:25 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1521839606.193843 ********************************************* + Rendered inline template (328.6ms) +Completed 200 OK in 329ms (Views: 328.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:26 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.7ms) +Completed 200 OK in 42ms (Views: 42.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:27 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.6ms) +Completed 200 OK in 44ms (Views: 43.9ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-23 17:13:27 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:28 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (57.5ms) +Completed 200 OK in 58ms (Views: 57.7ms) +Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-23 17:13:28 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:29 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (47.9ms) +Completed 200 OK in 49ms (Views: 48.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:32 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (48.1ms) +Completed 200 OK in 49ms (Views: 48.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:35 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (46.7ms) +Completed 200 OK in 47ms (Views: 47.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:37 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.5ms) +Completed 200 OK in 43ms (Views: 42.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:38 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (54.5ms) +Completed 200 OK in 55ms (Views: 54.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:39 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (50.2ms) +Completed 200 OK in 51ms (Views: 50.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:43 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.9ms) +Completed 200 OK in 44ms (Views: 44.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:45 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (45.6ms) +Completed 200 OK in 46ms (Views: 45.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:46 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.8ms) +Completed 200 OK in 44ms (Views: 43.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:18 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (568.0ms) +Completed 200 OK in 571ms (Views: 569.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 17:16:19 -0400 +Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 17:16:19 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:20 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (60.4ms) +Completed 200 OK in 61ms (Views: 60.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:21 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (46.1ms) +Completed 200 OK in 47ms (Views: 46.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:21 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (75.4ms) +Completed 200 OK in 76ms (Views: 75.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:22 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (61.8ms) +Completed 200 OK in 63ms (Views: 62.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:23 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1521839783.774038 ********************************************* + Rendered inline template (307.9ms) +Completed 200 OK in 309ms (Views: 308.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:24 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.8ms) +Completed 200 OK in 41ms (Views: 40.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:25 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.5ms) +Completed 200 OK in 41ms (Views: 40.8ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-23 17:16:25 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:25 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (50.2ms) +Completed 200 OK in 51ms (Views: 50.5ms) +Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-23 17:16:25 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:26 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.7ms) +Completed 200 OK in 40ms (Views: 39.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:29 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (45.7ms) +Completed 200 OK in 46ms (Views: 45.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:32 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.2ms) +Completed 200 OK in 39ms (Views: 38.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:33 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.4ms) +Completed 200 OK in 44ms (Views: 43.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:34 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (50.8ms) +Completed 200 OK in 51ms (Views: 51.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:35 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.7ms) +Completed 200 OK in 42ms (Views: 41.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:39 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.1ms) +Completed 200 OK in 40ms (Views: 39.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:40 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (48.9ms) +Completed 200 OK in 50ms (Views: 49.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:41 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.0ms) +Completed 200 OK in 41ms (Views: 40.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:13 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (6450.7ms) +Completed 200 OK in 6454ms (Views: 6452.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 17:18:19 -0400 +Started GET "/assets/application-1e95491ffeab90dbc00f536321000d09d0083efe92f45ed73760c684761259b1.js" for 127.0.0.1 at 2018-03-23 17:18:19 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:20 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (55.1ms) +Completed 200 OK in 56ms (Views: 55.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:21 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (54.4ms) +Completed 200 OK in 55ms (Views: 54.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:22 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (78.4ms) +Completed 200 OK in 79ms (Views: 78.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:23 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (47.6ms) +Completed 200 OK in 48ms (Views: 47.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:24 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1521839904.814492 ********************************************* + Rendered inline template (741.3ms) +Completed 200 OK in 742ms (Views: 741.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:25 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.3ms) +Completed 200 OK in 36ms (Views: 35.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:26 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (37.2ms) +Completed 200 OK in 38ms (Views: 37.5ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-23 17:18:26 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:26 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (51.6ms) +Completed 200 OK in 52ms (Views: 51.9ms) +Started GET "/assets/factorial-ecc91333317ec2a4b6e09593908058ecc55cf7408bc80d2158f55e49f518f879.js" for 127.0.0.1 at 2018-03-23 17:18:27 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:27 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (49.8ms) +Completed 200 OK in 50ms (Views: 50.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:30 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (35.4ms) +Completed 200 OK in 36ms (Views: 35.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:33 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (50.5ms) +Completed 200 OK in 51ms (Views: 50.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:34 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.2ms) +Completed 200 OK in 41ms (Views: 40.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:35 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.3ms) +Completed 200 OK in 40ms (Views: 39.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:36 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.8ms) +Completed 200 OK in 41ms (Views: 41.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:40 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.7ms) +Completed 200 OK in 40ms (Views: 40.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:42 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.9ms) +Completed 200 OK in 42ms (Views: 41.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:42 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.3ms) +Completed 200 OK in 40ms (Views: 39.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:16 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (660.2ms) +Completed 200 OK in 663ms (Views: 661.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-04-30 19:14:17 -0400 +Started GET "/assets/application-1e95491ffeab90dbc00f536321000d09d0083efe92f45ed73760c684761259b1.js" for 127.0.0.1 at 2018-04-30 19:14:17 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:18 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (35.1ms) +Completed 200 OK in 36ms (Views: 35.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:18 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (37.6ms) +Completed 200 OK in 38ms (Views: 37.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:19 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (35.4ms) +Completed 200 OK in 36ms (Views: 35.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:20 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.3ms) +Completed 200 OK in 40ms (Views: 39.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:21 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1525130061.3826911 ********************************************* + Rendered inline template (301.2ms) +Completed 200 OK in 302ms (Views: 301.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:21 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.9ms) +Completed 200 OK in 42ms (Views: 41.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:22 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.5ms) +Completed 200 OK in 40ms (Views: 39.7ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-04-30 19:14:22 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:23 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.8ms) +Completed 200 OK in 40ms (Views: 40.0ms) +Started GET "/assets/factorial-ecc91333317ec2a4b6e09593908058ecc55cf7408bc80d2158f55e49f518f879.js" for 127.0.0.1 at 2018-04-30 19:14:23 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:24 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.9ms) +Completed 200 OK in 42ms (Views: 41.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:27 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.4ms) +Completed 200 OK in 44ms (Views: 43.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:30 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.4ms) +Completed 200 OK in 43ms (Views: 42.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:31 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (63.9ms) +Completed 200 OK in 65ms (Views: 64.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:32 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (52.3ms) +Completed 200 OK in 53ms (Views: 52.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:33 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (59.3ms) +Completed 200 OK in 60ms (Views: 59.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:36 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.1ms) +Completed 200 OK in 42ms (Views: 41.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:38 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.2ms) +Completed 200 OK in 39ms (Views: 38.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:39 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.0ms) +Completed 200 OK in 40ms (Views: 39.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:16:08 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1525130169.2828858 ********************************************* + Rendered inline template (797.8ms) +Completed 200 OK in 801ms (Views: 799.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-04-30 19:16:09 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:17:58 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1525130280.372287 ********************************************* + Rendered inline template (2032.6ms) +Completed 500 Internal Server Error in 2035ms +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:33 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (728.2ms) +Completed 200 OK in 731ms (Views: 729.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-05-05 16:22:34 -0400 +Started GET "/assets/application-1e95491ffeab90dbc00f536321000d09d0083efe92f45ed73760c684761259b1.js" for 127.0.0.1 at 2018-05-05 16:22:34 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:35 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.5ms) +Completed 200 OK in 39ms (Views: 38.8ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:36 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (35.6ms) +Completed 200 OK in 36ms (Views: 35.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:36 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.0ms) +Completed 200 OK in 39ms (Views: 38.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:37 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (35.8ms) +Completed 200 OK in 37ms (Views: 36.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:38 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1525551758.687947 ********************************************* + Rendered inline template (303.1ms) +Completed 200 OK in 304ms (Views: 303.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:39 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.6ms) +Completed 200 OK in 42ms (Views: 41.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:39 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (37.6ms) +Completed 200 OK in 38ms (Views: 37.9ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-05-05 16:22:40 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:40 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.8ms) +Completed 200 OK in 40ms (Views: 40.1ms) +Started GET "/assets/factorial-ecc91333317ec2a4b6e09593908058ecc55cf7408bc80d2158f55e49f518f879.js" for 127.0.0.1 at 2018-05-05 16:22:40 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:41 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.5ms) +Completed 200 OK in 39ms (Views: 38.7ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:44 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.2ms) +Completed 200 OK in 42ms (Views: 41.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:47 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (47.0ms) +Completed 200 OK in 48ms (Views: 47.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:48 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (58.6ms) +Completed 200 OK in 59ms (Views: 58.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:49 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (49.4ms) +Completed 200 OK in 50ms (Views: 49.6ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:50 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (59.2ms) +Completed 200 OK in 60ms (Views: 59.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:54 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (37.8ms) +Completed 200 OK in 38ms (Views: 38.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:55 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (36.8ms) +Completed 200 OK in 37ms (Views: 37.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:56 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.1ms) +Completed 200 OK in 41ms (Views: 40.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:44 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (6371.8ms) +Completed 200 OK in 6377ms (Views: 6374.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-05-10 18:01:50 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-05-10 18:01:50 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:51 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (53.7ms) +Completed 200 OK in 55ms (Views: 54.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:52 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.1ms) +Completed 200 OK in 41ms (Views: 40.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:53 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.7ms) +Completed 200 OK in 41ms (Views: 40.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:54 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (45.6ms) +Completed 200 OK in 46ms (Views: 46.0ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:54 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1525989715.672835 ********************************************* + Rendered inline template (691.5ms) +Completed 200 OK in 692ms (Views: 691.9ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:56 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.9ms) +Completed 200 OK in 58ms (Views: 57.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:56 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.6ms) +Completed 200 OK in 40ms (Views: 39.8ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-05-10 18:01:57 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:57 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (45.2ms) +Completed 200 OK in 46ms (Views: 45.4ms) +Started GET "/assets/factorial-34b8d74ce0b1a03fe2b83c838defc4e19ef1d06fb798f500cf9ba4c7b3688f50.js" for 127.0.0.1 at 2018-05-10 18:01:57 -0400 +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:58 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.9ms) +Completed 200 OK in 41ms (Views: 40.2ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:01 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.8ms) +Completed 200 OK in 42ms (Views: 42.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:04 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (49.2ms) +Completed 200 OK in 50ms (Views: 49.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:05 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.2ms) +Completed 200 OK in 41ms (Views: 40.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:06 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (52.2ms) +Completed 200 OK in 53ms (Views: 52.4ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:07 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.9ms) +Completed 200 OK in 40ms (Views: 39.1ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:11 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.2ms) +Completed 200 OK in 44ms (Views: 43.5ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:12 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (53.0ms) +Completed 200 OK in 54ms (Views: 53.3ms) +Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:13 -0400 +Processing by ReactTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.0ms) +Completed 200 OK in 41ms (Views: 40.2ms) +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 15:41:14 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (851.8ms) +Completed 200 OK in 875ms (Views: 855.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 15:41:15 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 15:41:15 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 15:44:49 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (585.7ms) +Completed 200 OK in 600ms (Views: 588.6ms) +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 15:44:49 -0400 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 15:44:49 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 15:45:15 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (581.1ms) +Completed 200 OK in 595ms (Views: 584.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 15:45:16 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 15:45:16 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 15:58:01 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (588.4ms) +Completed 200 OK in 601ms (Views: 591.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 15:58:01 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 15:58:01 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:03:56 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (657.5ms) +Completed 200 OK in 670ms (Views: 660.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:03:56 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:03:56 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:33:06 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (608.8ms) +Completed 200 OK in 622ms (Views: 612.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:33:07 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:33:07 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:33:36 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (608.8ms) +Completed 200 OK in 622ms (Views: 611.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:33:37 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:33:37 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:33:59 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (593.2ms) +Completed 200 OK in 605ms (Views: 595.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:34:00 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:34:00 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:36:26 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (65.2ms) +Completed 200 OK in 75ms (Views: 65.6ms) +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:36:35 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (618.6ms) +Completed 200 OK in 632ms (Views: 621.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:36:36 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:36:36 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:42:00 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (71.5ms) +Completed 200 OK in 90ms (Views: 72.0ms) +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:42:10 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (584.0ms) +Completed 200 OK in 597ms (Views: 587.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:42:11 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:42:11 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:45:17 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (89.6ms) +Completed 200 OK in 102ms (Views: 90.1ms) +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:45:32 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (569.5ms) +Completed 200 OK in 582ms (Views: 572.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:45:32 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:45:32 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 21:50:50 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (183.6ms) +Completed 200 OK in 202ms (Views: 184.7ms) +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 21:50:59 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (756.5ms) +Completed 200 OK in 768ms (Views: 759.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 21:51:00 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 21:51:00 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 21:52:11 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (778.0ms) +Completed 200 OK in 790ms (Views: 781.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 21:52:12 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 21:52:12 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 21:54:03 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (747.2ms) +Completed 200 OK in 759ms (Views: 750.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 21:54:04 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 21:54:04 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:00:55 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (60.5ms) +Completed 200 OK in 68ms (Views: 60.9ms) +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:01:05 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (734.5ms) +Completed 200 OK in 746ms (Views: 737.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:01:06 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:01:06 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:01:37 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (744.5ms) +Completed 200 OK in 755ms (Views: 747.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:01:37 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:01:37 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:01:54 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (651.1ms) +Completed 200 OK in 668ms (Views: 656.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:01:54 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:01:54 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:04:21 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (648.4ms) +Completed 200 OK in 661ms (Views: 650.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:04:21 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:04:21 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:17:31 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (693.9ms) +Completed 200 OK in 708ms (Views: 697.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:17:32 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:17:32 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:17:57 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (658.0ms) +Completed 200 OK in 676ms (Views: 662.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:17:58 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:17:58 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:18:24 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (644.4ms) +Completed 200 OK in 656ms (Views: 647.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:18:24 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:18:24 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:19:25 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (632.6ms) +Completed 200 OK in 647ms (Views: 636.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:19:25 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:19:25 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:22:07 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (649.1ms) +Completed 200 OK in 664ms (Views: 653.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:22:08 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:22:08 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:43:32 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (655.4ms) +Completed 200 OK in 669ms (Views: 658.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:43:33 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:43:33 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:45:14 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (705.7ms) +Completed 200 OK in 723ms (Views: 709.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:45:15 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:45:15 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:46:35 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (626.6ms) +Completed 200 OK in 640ms (Views: 629.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:46:36 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:46:36 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:49:35 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (638.2ms) +Completed 200 OK in 651ms (Views: 641.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:49:36 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:49:36 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:57:47 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (84.3ms) +Completed 200 OK in 97ms (Views: 84.8ms) +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:58:06 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (763.7ms) +Completed 200 OK in 794ms (Views: 767.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:58:07 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:58:07 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:58:53 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (624.6ms) +Completed 200 OK in 642ms (Views: 628.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:58:54 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:58:54 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:59:25 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (713.7ms) +Completed 200 OK in 728ms (Views: 717.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:59:26 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:59:26 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:01:43 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (49.3ms) +Completed 200 OK in 56ms (Views: 49.7ms) +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:06:18 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (633.3ms) +Completed 200 OK in 647ms (Views: 637.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:06:19 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:06:19 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:08:18 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (633.7ms) +Completed 200 OK in 645ms (Views: 636.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:08:18 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:08:18 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:08:51 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (637.4ms) +Completed 200 OK in 654ms (Views: 641.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:08:51 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:08:51 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:11:20 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (629.1ms) +Completed 200 OK in 647ms (Views: 632.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:11:21 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:11:21 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:12:44 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (630.0ms) +Completed 200 OK in 647ms (Views: 634.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:12:45 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:12:45 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:14:33 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (773.4ms) +Completed 200 OK in 800ms (Views: 777.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:14:33 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:14:33 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:18:08 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (760.1ms) +Completed 200 OK in 785ms (Views: 764.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:18:09 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:18:09 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:19:57 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (629.6ms) +Completed 200 OK in 655ms (Views: 643.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:19:57 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:19:57 -0400 +Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:31:25 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} + Rendering inline template + Rendered inline template (642.5ms) +Completed 200 OK in 654ms (Views: 645.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:31:26 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:31:26 -0400 +Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:34:42 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} + Rendering inline template + Rendered inline template (767.5ms) +Completed 200 OK in 780ms (Views: 770.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:34:43 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:34:43 -0400 +Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:35:54 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} + Rendering inline template + Rendered inline template (642.2ms) +Completed 200 OK in 654ms (Views: 645.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:35:55 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:35:55 -0400 +Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:38:38 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} + Rendering inline template + Rendered inline template (728.1ms) +Completed 200 OK in 742ms (Views: 730.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:38:38 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:38:38 -0400 +Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:43:08 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} + Rendering inline template + Rendered inline template (685.2ms) +Completed 200 OK in 700ms (Views: 688.3ms) +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:43:08 -0400 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:43:08 -0400 +Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:44:14 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} + Rendering inline template + Rendered inline template (602.4ms) +Completed 200 OK in 613ms (Views: 604.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:44:14 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:44:14 -0400 +Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:44:45 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} + Rendering inline template + Rendered inline template (609.0ms) +Completed 200 OK in 627ms (Views: 616.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:44:45 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:44:45 -0400 +Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:45:17 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} + Rendering inline template + Rendered inline template (680.4ms) +Completed 200 OK in 691ms (Views: 683.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:45:18 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:45:18 -0400 +Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:46:26 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} + Rendering inline template + Rendered inline template (576.0ms) +Completed 200 OK in 596ms (Views: 578.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:46:27 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:46:27 -0400 +Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:48:08 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} + Rendering inline template + Rendered inline template (614.5ms) +Completed 200 OK in 626ms (Views: 618.2ms) +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:48:09 -0400 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:48:09 -0400 +Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:48:41 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} + Rendering inline template + Rendered inline template (600.1ms) +Completed 200 OK in 618ms (Views: 603.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:48:41 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:48:41 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:31:42 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (831.7ms) +Completed 200 OK in 836ms (Views: 833.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-10-04 08:31:43 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-10-04 08:31:43 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:40:21 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (769.5ms) +Completed 200 OK in 773ms (Views: 770.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-10-04 08:40:22 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-10-04 08:40:22 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:41:22 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (621.2ms) +Completed 200 OK in 624ms (Views: 622.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-10-04 08:41:23 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-10-04 08:41:23 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:41:54 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (617.5ms) +Completed 200 OK in 620ms (Views: 618.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-10-04 08:41:54 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-10-04 08:41:54 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:42:27 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (651.8ms) +Completed 200 OK in 655ms (Views: 653.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-10-04 08:42:28 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-10-04 08:42:28 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:45:23 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (83.3ms) +Completed 200 OK in 85ms (Views: 83.7ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:46:41 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (616.5ms) +Completed 200 OK in 620ms (Views: 617.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-10-04 08:46:42 -0400 +Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-10-04 08:46:42 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 08:59:23 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (8571.6ms) +Completed 200 OK in 8575ms (Views: 8572.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 08:59:31 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 08:59:31 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:00:06 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (818.4ms) +Completed 200 OK in 823ms (Views: 820.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:00:07 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:00:07 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:03:25 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (970.8ms) +Completed 200 OK in 979ms (Views: 974.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:03:26 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:03:26 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:06:59 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (989.8ms) +Completed 200 OK in 992ms (Views: 990.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:07:00 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:07:00 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:12:06 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (852.8ms) +Completed 200 OK in 856ms (Views: 854.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:12:07 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:12:07 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:13:45 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (947.3ms) +Completed 200 OK in 955ms (Views: 950.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:13:46 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:13:46 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:17:15 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1033.7ms) +Completed 200 OK in 1038ms (Views: 1035.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:17:16 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:17:16 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:20:40 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1039.1ms) +Completed 200 OK in 1044ms (Views: 1041.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:20:42 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:20:42 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:22:42 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (965.9ms) +Completed 200 OK in 971ms (Views: 967.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:22:43 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:22:43 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:24:13 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1279.7ms) +Completed 200 OK in 1285ms (Views: 1282.1ms) +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:24:15 -0400 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:24:15 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:26:58 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (99.2ms) +Completed 200 OK in 100ms (Views: 99.5ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:27:35 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1009.7ms) +Completed 200 OK in 1015ms (Views: 1011.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:27:37 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:27:37 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:40:05 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1103.3ms) +Completed 200 OK in 1123ms (Views: 1105.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:40:06 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:40:06 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:43:42 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (944.2ms) +Completed 200 OK in 962ms (Views: 946.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:43:43 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:43:43 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:52:36 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1110.9ms) +Completed 200 OK in 1129ms (Views: 1113.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:52:37 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:52:37 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 09:52:48 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (110.5ms) +Completed 200 OK in 126ms (Views: 111.1ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 09:52:58 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (50.2ms) +Completed 200 OK in 62ms (Views: 50.6ms) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 09:52:59 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (66.0ms) +Completed 200 OK in 78ms (Views: 66.3ms) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 09:53:00 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (60.6ms) +Completed 200 OK in 75ms (Views: 61.0ms) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 09:53:01 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1589637183.177838 ********************************************* + Rendered inline template (1673.2ms) +Completed 200 OK in 1686ms (Views: 1673.7ms) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 09:53:03 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.8ms) +Completed 200 OK in 66ms (Views: 52.5ms) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 09:53:04 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (113.4ms) +Completed 200 OK in 129ms (Views: 114.0ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 09:53:04 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:55:01 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (998.8ms) +Completed 200 OK in 1002ms (Views: 1000.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:55:02 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:55:02 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 09:55:03 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (46.3ms) +Completed 200 OK in 47ms (Views: 46.6ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 09:55:05 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (86.0ms) +Completed 200 OK in 87ms (Views: 86.3ms) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 09:55:05 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (79.6ms) +Completed 200 OK in 81ms (Views: 80.4ms) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 09:55:06 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (84.4ms) +Completed 200 OK in 86ms (Views: 84.8ms) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 09:55:07 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1589637308.4272552 ********************************************* + Rendered inline template (515.4ms) +Completed 200 OK in 516ms (Views: 515.7ms) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 09:55:09 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (2.1ms) +Completed 200 OK in 59ms (Views: 58.5ms) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 09:55:10 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (101.0ms) +Completed 200 OK in 112ms (Views: 111.5ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 09:55:10 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:55:27 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (991.9ms) +Completed 200 OK in 996ms (Views: 993.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:55:28 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:55:28 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 09:55:29 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (154.4ms) +Completed 200 OK in 157ms (Views: 155.1ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 09:55:30 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (142.8ms) +Completed 200 OK in 144ms (Views: 143.2ms) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 09:55:31 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (56.8ms) +Completed 200 OK in 58ms (Views: 57.1ms) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 09:55:32 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (47.6ms) +Completed 200 OK in 48ms (Views: 47.9ms) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 09:55:33 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1589637333.9826949 ********************************************* + Rendered inline template (430.6ms) +Completed 200 OK in 431ms (Views: 430.9ms) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 09:55:34 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.5ms) +Completed 200 OK in 52ms (Views: 51.6ms) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 09:55:35 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (178.3ms) +Completed 200 OK in 179ms (Views: 178.6ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 09:55:35 -0400 +Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2020-05-16 09:55:36 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"9"} + Rendering inline template + Rendered inline template (88.4ms) +Completed 200 OK in 90ms (Views: 88.9ms) +Started GET "/assets/factorial-c2ada5ac6c789cc5b77be5363587b689defea94396a5b319895f7e74817b8532.js" for 127.0.0.1 at 2020-05-16 09:55:36 -0400 +Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2020-05-16 09:55:37 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"10"} + Rendering inline template + Rendered inline template (53.2ms) +Completed 200 OK in 54ms (Views: 53.6ms) +Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2020-05-16 09:55:40 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"11"} + Rendering inline template + Rendered inline template (53.4ms) +Completed 200 OK in 54ms (Views: 53.6ms) +Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2020-05-16 09:55:41 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"12"} + Rendering inline template + Rendered inline template (51.4ms) +Completed 200 OK in 52ms (Views: 51.7ms) +Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2020-05-16 09:55:52 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"13"} + Rendering inline template + Rendered inline template (52.3ms) +Completed 200 OK in 53ms (Views: 52.7ms) +Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2020-05-16 09:56:03 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"14"} + Rendering inline template + Rendered inline template (45.6ms) +Completed 200 OK in 46ms (Views: 45.9ms) +Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2020-05-16 09:56:04 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15"} + Rendering inline template + Rendered inline template (44.7ms) +Completed 200 OK in 46ms (Views: 45.0ms) +Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2020-05-16 09:56:08 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"16"} + Rendering inline template + Rendered inline template (160.9ms) +Completed 200 OK in 162ms (Views: 161.2ms) +Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2020-05-16 09:56:10 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"17"} + Rendering inline template + Rendered inline template (46.9ms) +Completed 200 OK in 48ms (Views: 47.2ms) +Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2020-05-16 09:56:11 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"18"} + Rendering inline template + Rendered inline template (68.4ms) +Completed 200 OK in 69ms (Views: 68.8ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:00:19 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1046.0ms) +Completed 200 OK in 1050ms (Views: 1047.1ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:00:20 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:00:20 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:03:08 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1251.8ms) +Completed 200 OK in 1255ms (Views: 1253.1ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:03:10 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:03:10 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:04:24 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1203.1ms) +Completed 200 OK in 1208ms (Views: 1205.0ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:04:26 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:04:26 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:04:38 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (912.6ms) +Completed 200 OK in 917ms (Views: 914.3ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:04:39 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:04:39 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:04:54 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (970.7ms) +Completed 200 OK in 975ms (Views: 972.2ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:04:55 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:04:55 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:05:52 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (933.0ms) +Completed 200 OK in 937ms (Views: 934.5ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:05:53 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:05:53 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:06:23 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1069.5ms) +Completed 200 OK in 1072ms (Views: 1070.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:06:24 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:06:24 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:08:21 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (969.8ms) +Completed 200 OK in 973ms (Views: 971.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:08:23 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:08:23 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:08:54 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (944.5ms) +Completed 200 OK in 948ms (Views: 945.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:08:54 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:08:54 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 10:08:56 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (55.5ms) +Completed 200 OK in 56ms (Views: 55.9ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 10:08:57 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (83.6ms) +Completed 200 OK in 84ms (Views: 83.9ms) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 10:08:57 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (41.4ms) +Completed 200 OK in 42ms (Views: 41.6ms) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 10:08:58 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (41.1ms) +Completed 200 OK in 42ms (Views: 41.4ms) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 10:08:59 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1589638139.817896 ********************************************* + Rendered inline template (419.1ms) +Completed 200 OK in 420ms (Views: 419.4ms) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 10:09:00 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.5ms) +Completed 200 OK in 63ms (Views: 62.5ms) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 10:09:01 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (62.5ms) +Completed 200 OK in 63ms (Views: 62.9ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:09:01 -0400 +Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2020-05-16 10:09:01 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"9"} + Rendering inline template + Rendered inline template (71.8ms) +Completed 200 OK in 73ms (Views: 72.1ms) +Started GET "/assets/factorial-c2ada5ac6c789cc5b77be5363587b689defea94396a5b319895f7e74817b8532.js" for 127.0.0.1 at 2020-05-16 10:09:02 -0400 +Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2020-05-16 10:09:03 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"10"} + Rendering inline template + Rendered inline template (57.9ms) +Completed 200 OK in 59ms (Views: 58.2ms) +Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2020-05-16 10:09:06 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"11"} + Rendering inline template + Rendered inline template (46.2ms) +Completed 200 OK in 47ms (Views: 46.6ms) +Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2020-05-16 10:09:06 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"12"} + Rendering inline template + Rendered inline template (48.3ms) +Completed 200 OK in 49ms (Views: 48.6ms) +Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2020-05-16 10:09:17 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"13"} + Rendering inline template + Rendered inline template (45.8ms) +Completed 200 OK in 47ms (Views: 46.1ms) +Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2020-05-16 10:09:28 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"14"} + Rendering inline template + Rendered inline template (48.1ms) +Completed 200 OK in 49ms (Views: 48.4ms) +Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2020-05-16 10:09:29 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15"} + Rendering inline template + Rendered inline template (50.3ms) +Completed 200 OK in 51ms (Views: 50.6ms) +Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2020-05-16 10:09:33 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"16"} + Rendering inline template + Rendered inline template (41.4ms) +Completed 200 OK in 42ms (Views: 41.8ms) +Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2020-05-16 10:09:34 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"17"} + Rendering inline template + Rendered inline template (44.5ms) +Completed 200 OK in 45ms (Views: 44.8ms) +Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2020-05-16 10:09:35 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"18"} + Rendering inline template + Rendered inline template (45.7ms) +Completed 200 OK in 46ms (Views: 46.0ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:10:54 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1005.0ms) +Completed 200 OK in 1008ms (Views: 1006.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:10:55 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:10:55 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:11:05 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1035.2ms) +Completed 200 OK in 1040ms (Views: 1036.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:11:06 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:11:06 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:12:15 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1030.0ms) +Completed 200 OK in 1034ms (Views: 1031.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:12:16 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:12:16 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:14:10 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1084.1ms) +Completed 200 OK in 1095ms (Views: 1087.5ms) +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:14:11 -0400 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:14:11 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:16:24 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1175.2ms) +Completed 200 OK in 1178ms (Views: 1176.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:16:25 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:16:25 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:30:41 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1198.2ms) +Completed 200 OK in 1202ms (Views: 1199.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:30:42 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:30:42 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:30:53 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (748.2ms) +Completed 200 OK in 752ms (Views: 749.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:30:54 -0400 +Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:30:54 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:40:30 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (2509.6ms) +Completed 200 OK in 2513ms (Views: 2510.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:40:33 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:40:33 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:42:49 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1116.2ms) +Completed 200 OK in 1121ms (Views: 1118.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:42:50 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:42:50 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:43:34 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1090.5ms) +Completed 200 OK in 1099ms (Views: 1094.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:43:35 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:43:35 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:44:52 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1013.3ms) +Completed 200 OK in 1019ms (Views: 1015.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:44:53 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:44:53 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:46:45 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1069.8ms) +Completed 200 OK in 1076ms (Views: 1072.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:46:46 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:46:46 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:47:24 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1151.2ms) +Completed 200 OK in 1161ms (Views: 1154.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:47:25 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:47:25 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 10:47:27 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (74.5ms) +Completed 200 OK in 77ms (Views: 74.8ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:47:46 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (946.6ms) +Completed 200 OK in 950ms (Views: 948.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:47:47 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:47:47 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 10:47:49 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (119.3ms) +Completed 200 OK in 120ms (Views: 119.6ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 10:47:50 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (71.7ms) +Completed 200 OK in 73ms (Views: 72.1ms) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 10:47:50 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (46.4ms) +Completed 200 OK in 47ms (Views: 46.7ms) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 10:47:51 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (45.6ms) +Completed 200 OK in 46ms (Views: 45.9ms) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 10:47:52 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1589640473.821494 ********************************************* + Rendered inline template (1313.1ms) +Completed 200 OK in 1314ms (Views: 1313.4ms) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 10:47:54 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.5ms) +Completed 200 OK in 75ms (Views: 74.2ms) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 10:47:55 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (126.1ms) +Completed 200 OK in 127ms (Views: 126.5ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:47:55 -0400 +Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2020-05-16 10:47:56 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"9"} + Rendering inline template + Rendered inline template (39.9ms) +Completed 200 OK in 41ms (Views: 40.2ms) +Started GET "/assets/factorial-00a7ebab2b76a008fc1d8adbe9e11ff9280b71622a30d2995ef004b731fbe4f8.js" for 127.0.0.1 at 2020-05-16 10:47:56 -0400 +Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2020-05-16 10:47:57 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"10"} + Rendering inline template + Rendered inline template (80.2ms) +Completed 200 OK in 81ms (Views: 80.5ms) +Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2020-05-16 10:48:00 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"11"} + Rendering inline template + Rendered inline template (42.2ms) +Completed 200 OK in 43ms (Views: 42.5ms) +Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2020-05-16 10:48:03 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"12"} + Rendering inline template + Rendered inline template (96.5ms) +Completed 200 OK in 98ms (Views: 97.3ms) +Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2020-05-16 10:48:04 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"13"} + Rendering inline template + Rendered inline template (64.2ms) +Completed 200 OK in 65ms (Views: 64.7ms) +Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2020-05-16 10:48:05 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"14"} + Rendering inline template + Rendered inline template (83.2ms) +Completed 200 OK in 84ms (Views: 83.6ms) +Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2020-05-16 10:48:06 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15"} + Rendering inline template + Rendered inline template (92.6ms) +Completed 200 OK in 94ms (Views: 93.2ms) +Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2020-05-16 10:48:10 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"16"} + Rendering inline template + Rendered inline template (42.7ms) +Completed 200 OK in 43ms (Views: 43.0ms) +Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2020-05-16 10:48:12 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"17"} + Rendering inline template + Rendered inline template (48.0ms) +Completed 200 OK in 49ms (Views: 48.3ms) +Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2020-05-16 10:48:13 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"18"} + Rendering inline template + Rendered inline template (76.3ms) +Completed 200 OK in 77ms (Views: 76.6ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 11:02:56 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (910.5ms) +Completed 200 OK in 913ms (Views: 911.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 11:02:57 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 11:02:57 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 11:20:21 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (901.3ms) +Completed 200 OK in 904ms (Views: 902.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 11:20:22 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 11:20:22 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 11:29:54 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (74.9ms) +Completed 200 OK in 76ms (Views: 75.2ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 11:29:55 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (49.2ms) +Completed 200 OK in 50ms (Views: 49.5ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 11:33:42 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (894.7ms) +Completed 200 OK in 898ms (Views: 895.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 11:33:43 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 11:33:43 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 11:40:37 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (47.1ms) +Completed 200 OK in 48ms (Views: 47.4ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 11:40:38 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (87.4ms) +Completed 200 OK in 88ms (Views: 87.8ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 11:40:51 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (965.2ms) +Completed 200 OK in 968ms (Views: 966.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 11:40:52 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 11:40:52 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 11:42:50 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (48.8ms) +Completed 200 OK in 50ms (Views: 49.2ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 11:42:51 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (41.6ms) +Completed 200 OK in 42ms (Views: 41.9ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 11:43:39 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (889.7ms) +Completed 200 OK in 892ms (Views: 890.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 11:43:40 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 11:43:40 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 12:06:15 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (90.2ms) +Completed 200 OK in 91ms (Views: 90.5ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 12:06:18 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (43.8ms) +Completed 200 OK in 44ms (Views: 44.1ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:06:49 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1096.9ms) +Completed 200 OK in 1100ms (Views: 1098.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:06:50 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:06:50 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:12:21 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (871.9ms) +Completed 200 OK in 876ms (Views: 873.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:12:22 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:12:22 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:14:35 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (869.6ms) +Completed 200 OK in 872ms (Views: 870.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:14:36 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:14:36 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:14:53 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (975.7ms) +Completed 200 OK in 978ms (Views: 976.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:14:54 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:14:54 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:17:52 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (835.6ms) +Completed 200 OK in 839ms (Views: 837.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:17:53 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:17:53 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:18:07 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (864.8ms) +Completed 200 OK in 869ms (Views: 865.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:18:08 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:18:08 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:23:21 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1089.1ms) +Completed 200 OK in 1093ms (Views: 1090.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:23:22 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:23:22 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:28:41 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (902.5ms) +Completed 200 OK in 905ms (Views: 903.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:28:42 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:28:42 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:02:47 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (923.2ms) +Completed 200 OK in 930ms (Views: 925.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:02:48 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:02:48 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:03:12 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1091.4ms) +Completed 200 OK in 1095ms (Views: 1092.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:03:13 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:03:13 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:13:01 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (867.8ms) +Completed 200 OK in 871ms (Views: 869.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:13:02 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:13:02 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:28:16 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1072.4ms) +Completed 200 OK in 1082ms (Views: 1077.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:28:17 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:28:17 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 20:31:24 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (68.9ms) +Completed 200 OK in 70ms (Views: 69.3ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 20:31:25 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (88.3ms) +Completed 200 OK in 89ms (Views: 88.6ms) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 20:31:27 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (68.6ms) +Completed 200 OK in 70ms (Views: 69.0ms) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 20:31:28 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (76.5ms) +Completed 200 OK in 78ms (Views: 77.0ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:32:04 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1387.9ms) +Completed 200 OK in 1394ms (Views: 1390.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:32:06 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:32:06 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:45:38 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1414.5ms) +Completed 200 OK in 1419ms (Views: 1416.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:45:39 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:45:39 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:56:56 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (779.3ms) +Completed 200 OK in 785ms (Views: 782.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:56:57 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:56:57 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:58:55 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (894.1ms) +Completed 200 OK in 897ms (Views: 895.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:58:56 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:58:56 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 21:28:59 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (898.2ms) +Completed 200 OK in 902ms (Views: 899.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 21:29:00 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 21:29:00 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:28:53 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (783.0ms) +Completed 200 OK in 789ms (Views: 785.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:28:54 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:28:54 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:30:49 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1109.8ms) +Completed 200 OK in 1113ms (Views: 1110.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:30:50 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:30:50 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:34:11 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (981.2ms) +Completed 200 OK in 984ms (Views: 982.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:34:12 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:34:12 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 22:34:14 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (42.8ms) +Completed 200 OK in 44ms (Views: 43.1ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 22:34:14 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (82.8ms) +Completed 200 OK in 84ms (Views: 83.1ms) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 22:34:15 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (42.4ms) +Completed 200 OK in 43ms (Views: 42.7ms) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 22:34:17 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (47.7ms) +Completed 200 OK in 48ms (Views: 48.0ms) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 22:34:18 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (41.1ms) +Completed 200 OK in 42ms (Views: 41.4ms) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 22:34:18 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template + Rendered inline template (79.4ms) +Completed 200 OK in 80ms (Views: 79.7ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:39:10 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (889.6ms) +Completed 200 OK in 893ms (Views: 891.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:39:11 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:39:11 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:43:54 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (991.2ms) +Completed 200 OK in 995ms (Views: 992.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:43:55 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:43:55 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:52:22 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (972.1ms) +Completed 200 OK in 975ms (Views: 973.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:52:23 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:52:23 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:53:03 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (867.9ms) +Completed 200 OK in 870ms (Views: 868.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:53:04 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:53:04 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:55:14 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (954.5ms) +Completed 200 OK in 958ms (Views: 955.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:55:15 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:55:15 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 22:55:17 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (44.5ms) +Completed 200 OK in 45ms (Views: 44.8ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 22:55:18 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (80.8ms) +Completed 200 OK in 82ms (Views: 81.2ms) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 22:55:18 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (47.5ms) +Completed 200 OK in 48ms (Views: 47.8ms) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 22:55:19 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (42.1ms) +Completed 200 OK in 43ms (Views: 42.5ms) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 22:55:20 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1589684120.804472 ********************************************* + Rendered inline template (483.0ms) +Completed 200 OK in 484ms (Views: 483.5ms) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 22:55:21 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.9ms) +Completed 200 OK in 45ms (Views: 44.4ms) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 22:55:22 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (55.3ms) +Completed 200 OK in 56ms (Views: 55.6ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 22:55:22 -0400 +Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2020-05-16 22:55:22 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"9"} + Rendering inline template + Rendered inline template (71.5ms) +Completed 200 OK in 73ms (Views: 71.9ms) +Started GET "/assets/factorial-00a7ebab2b76a008fc1d8adbe9e11ff9280b71622a30d2995ef004b731fbe4f8.js" for 127.0.0.1 at 2020-05-16 22:55:23 -0400 +Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2020-05-16 22:55:24 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"10"} + Rendering inline template + Rendered inline template (45.0ms) +Completed 200 OK in 46ms (Views: 45.3ms) +Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2020-05-16 22:55:27 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"11"} + Rendering inline template + Rendered inline template (45.6ms) +Completed 200 OK in 46ms (Views: 45.9ms) +Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2020-05-16 22:55:29 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"12"} + Rendering inline template + Rendered inline template (52.2ms) +Completed 200 OK in 53ms (Views: 52.6ms) +Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2020-05-16 22:55:31 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"13"} + Rendering inline template + Rendered inline template (47.2ms) +Completed 200 OK in 48ms (Views: 47.5ms) +Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2020-05-16 22:55:32 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"14"} + Rendering inline template + Rendered inline template (47.1ms) +Completed 200 OK in 48ms (Views: 47.4ms) +Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2020-05-16 22:55:33 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15"} + Rendering inline template + Rendered inline template (41.7ms) +Completed 200 OK in 43ms (Views: 42.0ms) +Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2020-05-16 22:55:36 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"16"} + Rendering inline template + Rendered inline template (46.2ms) +Completed 200 OK in 47ms (Views: 46.5ms) +Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2020-05-16 22:55:38 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"17"} + Rendering inline template + Rendered inline template (42.1ms) +Completed 200 OK in 43ms (Views: 42.4ms) +Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2020-05-16 22:55:39 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"18"} + Rendering inline template + Rendered inline template (46.6ms) +Completed 200 OK in 47ms (Views: 46.9ms) +Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2020-05-16 22:55:40 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"19"} + Rendering inline template + Rendered inline template (63.4ms) +Completed 200 OK in 65ms (Views: 63.7ms) +Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2020-05-16 22:55:40 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"20"} + Rendering inline template + Rendered inline template (45.2ms) +Completed 200 OK in 46ms (Views: 45.5ms) +Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2020-05-16 22:55:41 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"21"} + Rendering inline template + Rendered inline template (45.7ms) +Completed 200 OK in 46ms (Views: 46.0ms) +Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2020-05-16 22:55:42 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"22"} + Rendering inline template + Rendered inline template (65.4ms) +Completed 200 OK in 66ms (Views: 65.7ms) +Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2020-05-16 22:55:44 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"23"} + Rendering inline template + Rendered inline template (40.4ms) +Completed 200 OK in 41ms (Views: 40.7ms) +Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2020-05-16 22:55:44 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"24"} + Rendering inline template + Rendered inline template (50.4ms) +Completed 200 OK in 51ms (Views: 50.7ms) +Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2020-05-16 22:55:45 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"25"} + Rendering inline template + Rendered inline template (40.4ms) +Completed 200 OK in 41ms (Views: 40.7ms) +Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2020-05-16 22:55:46 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"26"} + Rendering inline template + Rendered inline template (70.0ms) +Completed 200 OK in 71ms (Views: 70.3ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 23:09:45 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (726.4ms) +Completed 200 OK in 730ms (Views: 727.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 23:09:45 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 23:09:45 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 23:09:47 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (42.7ms) +Completed 200 OK in 43ms (Views: 43.0ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 23:09:47 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (85.8ms) +Completed 200 OK in 87ms (Views: 86.2ms) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 23:09:48 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (117.5ms) +Completed 200 OK in 128ms (Views: 127.6ms) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 23:09:49 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (47.5ms) +Completed 200 OK in 48ms (Views: 47.8ms) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 23:09:50 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1589684990.6742349 ********************************************* + Rendered inline template (384.7ms) +Completed 200 OK in 385ms (Views: 385.0ms) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 23:09:51 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (2.3ms) +Completed 200 OK in 80ms (Views: 79.7ms) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 23:09:52 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (51.5ms) +Completed 200 OK in 52ms (Views: 51.8ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 23:09:52 -0400 +Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2020-05-16 23:09:52 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"9"} + Rendering inline template + Rendered inline template (41.6ms) +Completed 200 OK in 42ms (Views: 41.9ms) +Started GET "/assets/factorial-00a7ebab2b76a008fc1d8adbe9e11ff9280b71622a30d2995ef004b731fbe4f8.js" for 127.0.0.1 at 2020-05-16 23:09:52 -0400 +Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2020-05-16 23:09:54 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"10"} + Rendering inline template + Rendered inline template (76.2ms) +Completed 200 OK in 77ms (Views: 76.5ms) +Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2020-05-16 23:09:57 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"11"} + Rendering inline template + Rendered inline template (45.7ms) +Completed 200 OK in 46ms (Views: 46.0ms) +Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2020-05-16 23:09:59 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"12"} + Rendering inline template + Rendered inline template (43.8ms) +Completed 200 OK in 45ms (Views: 44.1ms) +Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2020-05-16 23:10:01 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"13"} + Rendering inline template + Rendered inline template (46.1ms) +Completed 200 OK in 47ms (Views: 46.4ms) +Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2020-05-16 23:10:02 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"14"} + Rendering inline template + Rendered inline template (43.4ms) +Completed 200 OK in 44ms (Views: 43.7ms) +Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2020-05-16 23:10:02 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15"} + Rendering inline template + Rendered inline template (69.3ms) +Completed 200 OK in 70ms (Views: 69.6ms) +Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2020-05-16 23:10:06 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"16"} + Rendering inline template + Rendered inline template (40.4ms) +Completed 200 OK in 41ms (Views: 40.7ms) +Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2020-05-16 23:10:08 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"17"} + Rendering inline template + Rendered inline template (41.8ms) +Completed 200 OK in 43ms (Views: 42.1ms) +Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2020-05-16 23:10:09 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"18"} + Rendering inline template + Rendered inline template (63.2ms) +Completed 200 OK in 64ms (Views: 63.5ms) +Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2020-05-16 23:10:09 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"19"} + Rendering inline template + Rendered inline template (44.4ms) +Completed 200 OK in 45ms (Views: 44.7ms) +Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2020-05-16 23:10:10 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"20"} + Rendering inline template + Rendered inline template (44.6ms) +Completed 200 OK in 45ms (Views: 44.9ms) +Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2020-05-16 23:10:11 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"21"} + Rendering inline template + Rendered inline template (45.4ms) +Completed 200 OK in 46ms (Views: 45.8ms) +Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2020-05-16 23:10:12 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"22"} + Rendering inline template + Rendered inline template (40.3ms) +Completed 200 OK in 41ms (Views: 40.6ms) +Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2020-05-16 23:10:13 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"23"} + Rendering inline template + Rendered inline template (46.0ms) +Completed 200 OK in 47ms (Views: 46.3ms) +Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2020-05-16 23:10:14 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"24"} + Rendering inline template + Rendered inline template (47.2ms) +Completed 200 OK in 48ms (Views: 47.5ms) +Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2020-05-16 23:10:15 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"25"} + Rendering inline template + Rendered inline template (39.9ms) +Completed 200 OK in 41ms (Views: 40.2ms) +Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2020-05-16 23:10:16 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"26"} + Rendering inline template + Rendered inline template (42.5ms) +Completed 200 OK in 43ms (Views: 42.8ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 23:12:38 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (881.1ms) +Completed 200 OK in 884ms (Views: 882.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 23:12:39 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 23:12:39 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 23:20:14 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (855.5ms) +Completed 200 OK in 859ms (Views: 856.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 23:20:15 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 23:20:15 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 23:29:26 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (932.5ms) +Completed 200 OK in 947ms (Views: 943.1ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 23:29:27 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 23:29:27 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 23:34:58 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (972.1ms) +Completed 200 OK in 975ms (Views: 973.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 23:34:59 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 23:34:59 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:01:41 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1104.4ms) +Completed 200 OK in 1108ms (Views: 1105.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:01:42 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:01:42 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:03:53 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1046.3ms) +Completed 200 OK in 1049ms (Views: 1047.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:03:54 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:03:54 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:05:01 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (805.5ms) +Completed 200 OK in 808ms (Views: 806.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:05:02 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:05:02 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:08:34 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (891.5ms) +Completed 200 OK in 894ms (Views: 892.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:08:35 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:08:35 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:12:43 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (929.4ms) +Completed 200 OK in 933ms (Views: 930.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:12:43 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:12:43 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:15:29 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (870.8ms) +Completed 200 OK in 874ms (Views: 871.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:15:30 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:15:30 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:17:05 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1089.1ms) +Completed 200 OK in 1092ms (Views: 1090.5ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:17:06 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:17:06 -0400 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:26:42 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (910.0ms) +Completed 200 OK in 913ms (Views: 911.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:26:43 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:26:43 -0400 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-17 00:26:50 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (46.3ms) +Completed 200 OK in 47ms (Views: 46.7ms) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-17 00:26:51 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (47.7ms) +Completed 200 OK in 48ms (Views: 48.0ms) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-17 00:26:52 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (42.4ms) +Completed 200 OK in 43ms (Views: 42.7ms) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-17 00:26:53 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (41.5ms) +Completed 200 OK in 42ms (Views: 41.8ms) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-17 00:26:53 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1589689614.2849941 ********************************************* + Rendered inline template (423.6ms) +Completed 200 OK in 424ms (Views: 423.9ms) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-17 00:26:54 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.5ms) +Completed 200 OK in 56ms (Views: 55.7ms) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-17 00:26:55 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (66.6ms) +Completed 200 OK in 68ms (Views: 66.9ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-17 00:26:55 -0400 +Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2020-05-17 00:26:56 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"9"} + Rendering inline template + Rendered inline template (110.8ms) +Completed 200 OK in 113ms (Views: 111.4ms) +Started GET "/assets/factorial-00a7ebab2b76a008fc1d8adbe9e11ff9280b71622a30d2995ef004b731fbe4f8.js" for 127.0.0.1 at 2020-05-17 00:26:56 -0400 +Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2020-05-17 00:26:57 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"10"} + Rendering inline template + Rendered inline template (143.2ms) +Completed 200 OK in 144ms (Views: 143.6ms) +Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2020-05-17 00:27:00 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"11"} + Rendering inline template + Rendered inline template (151.7ms) +Completed 200 OK in 153ms (Views: 152.1ms) +Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2020-05-17 00:27:03 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"12"} + Rendering inline template + Rendered inline template (42.1ms) +Completed 200 OK in 43ms (Views: 42.4ms) +Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2020-05-17 00:27:05 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"13"} + Rendering inline template + Rendered inline template (45.6ms) +Completed 200 OK in 47ms (Views: 46.0ms) +Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2020-05-17 00:27:06 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"14"} + Rendering inline template + Rendered inline template (40.9ms) +Completed 200 OK in 42ms (Views: 41.2ms) +Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2020-05-17 00:27:06 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15"} + Rendering inline template + Rendered inline template (40.2ms) +Completed 200 OK in 41ms (Views: 40.6ms) +Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2020-05-17 00:27:10 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"16"} + Rendering inline template + Rendered inline template (48.0ms) +Completed 200 OK in 49ms (Views: 48.3ms) +Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2020-05-17 00:27:12 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"17"} + Rendering inline template + Rendered inline template (64.8ms) +Completed 200 OK in 66ms (Views: 65.0ms) +Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2020-05-17 00:27:13 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"18"} + Rendering inline template + Rendered inline template (40.3ms) +Completed 200 OK in 41ms (Views: 40.6ms) +Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2020-05-17 00:27:14 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"19"} + Rendering inline template + Rendered inline template (42.2ms) +Completed 200 OK in 43ms (Views: 42.5ms) +Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2020-05-17 00:27:14 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"20"} + Rendering inline template + Rendered inline template (74.7ms) +Completed 200 OK in 75ms (Views: 75.1ms) +Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2020-05-17 00:27:15 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"21"} + Rendering inline template + Rendered inline template (42.7ms) +Completed 200 OK in 43ms (Views: 43.0ms) +Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2020-05-17 00:27:16 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"22"} + Rendering inline template + Rendered inline template (42.7ms) +Completed 200 OK in 43ms (Views: 43.0ms) +Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2020-05-17 00:27:18 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"23"} + Rendering inline template + Rendered inline template (41.6ms) +Completed 200 OK in 42ms (Views: 41.9ms) +Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2020-05-17 00:27:18 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"24"} + Rendering inline template + Rendered inline template (47.3ms) +Completed 200 OK in 48ms (Views: 47.6ms) +Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2020-05-17 00:27:19 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"25"} + Rendering inline template + Rendered inline template (49.7ms) +Completed 200 OK in 50ms (Views: 50.0ms) +Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2020-05-17 00:27:20 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"26"} + Rendering inline template + Rendered inline template (47.1ms) +Completed 200 OK in 48ms (Views: 47.4ms) +Started GET "/hyper_spec_test/27" for 127.0.0.1 at 2020-05-17 00:27:21 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"27"} + Rendering inline template + Rendered inline template (65.6ms) +Completed 200 OK in 66ms (Views: 65.9ms) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:28:26 -0400 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (899.7ms) +Completed 200 OK in 903ms (Views: 900.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:28:27 -0400 +Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:28:27 -0400 +Started GET "/test" for 127.0.0.1 at 2021-01-06 06:52:58 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 1.1ms | Allocations: 458) +Completed 200 OK in 7652ms (Views: 7652.0ms | Allocations: 11373013) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-06 06:53:06 -0500 +Started GET "/assets/application-a6b1b8b91d0864a1dfd13caf8f9dc9e70d3f4d3f06a2a8972f9d94b5f43a1857.js" for 127.0.0.1 at 2021-01-06 06:53:06 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:07 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 54.6ms | Allocations: 64638) +Completed 200 OK in 56ms (Views: 54.9ms | Allocations: 65052) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:08 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 37.8ms | Allocations: 64768) +Completed 200 OK in 38ms (Views: 38.0ms | Allocations: 65002) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:08 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 41.4ms | Allocations: 64747) +Completed 200 OK in 42ms (Views: 41.6ms | Allocations: 64980) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:09 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 74.6ms | Allocations: 64784) +Completed 200 OK in 75ms (Views: 74.9ms | Allocations: 65017) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:10 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 53.9ms | Allocations: 64767) +Completed 200 OK in 55ms (Views: 54.1ms | Allocations: 65000) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:10 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1609933991.422851 ********************************************* + Rendered inline template (Duration: 754.5ms | Allocations: 185554) +Completed 200 OK in 755ms (Views: 754.8ms | Allocations: 185798) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:11 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 1.4ms | Allocations: 1706) +Completed 200 OK in 42ms (Views: 41.5ms | Allocations: 64943) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:12 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 38.9ms | Allocations: 65254) +Completed 200 OK in 40ms (Views: 39.2ms | Allocations: 65488) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-06 06:53:12 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:13 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 41.3ms | Allocations: 73374) +Completed 200 OK in 42ms (Views: 41.6ms | Allocations: 73608) +Started GET "/assets/factorial-0a5e8cde9f74eaaf8dbea7f9f5c757aee85eabfef7181e02e014e93116db56fe.js" for 127.0.0.1 at 2021-01-06 06:53:13 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:14 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 66.7ms | Allocations: 64849) +Completed 200 OK in 67ms (Views: 66.9ms | Allocations: 65082) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:16 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 41.4ms | Allocations: 64821) +Completed 200 OK in 42ms (Views: 41.6ms | Allocations: 65054) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:19 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 38.8ms | Allocations: 64887) +Completed 200 OK in 40ms (Views: 39.0ms | Allocations: 65120) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:20 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 39.3ms | Allocations: 64886) +Completed 200 OK in 40ms (Views: 39.6ms | Allocations: 65119) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:21 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 67.2ms | Allocations: 64804) +Completed 200 OK in 68ms (Views: 67.5ms | Allocations: 65037) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:22 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 38.0ms | Allocations: 64777) +Completed 200 OK in 39ms (Views: 38.3ms | Allocations: 65010) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:25 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 37.1ms | Allocations: 64772) +Completed 200 OK in 38ms (Views: 37.4ms | Allocations: 65005) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:27 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 41.3ms | Allocations: 64772) +Completed 200 OK in 42ms (Views: 41.5ms | Allocations: 65005) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:28 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 38.2ms | Allocations: 64772) +Completed 200 OK in 39ms (Views: 38.5ms | Allocations: 65005) +Started GET "/test" for 127.0.0.1 at 2021-01-11 15:27:16 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (0.9ms) +Completed 200 OK in 6667ms (Views: 6667.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 15:27:23 -0500 +Started GET "/assets/application-f0e3cde56a16e9c5222c75f287bbad23b8ac0e782db3d56ae40c4f86b0f3217e.js" for 127.0.0.1 at 2021-01-11 15:27:23 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:23 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (101.6ms) +Completed 200 OK in 102ms (Views: 101.9ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:34 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.6ms) +Completed 200 OK in 39ms (Views: 38.8ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:45 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.4ms) +Completed 200 OK in 41ms (Views: 40.6ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:46 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.3ms) +Completed 200 OK in 39ms (Views: 38.6ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:47 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.9ms) +Completed 200 OK in 40ms (Views: 39.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:47 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610396868.6430058 ********************************************* + Rendered inline template (815.7ms) +Completed 500 Internal Server Error in 816ms +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:49 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.8ms) +Completed 200 OK in 41ms (Views: 40.8ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:00 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (54.6ms) +Completed 200 OK in 55ms (Views: 54.9ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-11 15:28:00 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:00 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.4ms) +Completed 200 OK in 44ms (Views: 43.7ms) +Started GET "/assets/factorial-fd6bacfc4ea652b598c28c39f6cf80ab4867e886a7a5a828644d2d9516634c2c.js" for 127.0.0.1 at 2021-01-11 15:28:00 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:01 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.3ms) +Completed 200 OK in 42ms (Views: 41.5ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:04 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.7ms) +Completed 200 OK in 44ms (Views: 44.0ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:07 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.3ms) +Completed 200 OK in 44ms (Views: 43.6ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:18 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.3ms) +Completed 200 OK in 39ms (Views: 38.6ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:29 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.0ms) +Completed 200 OK in 44ms (Views: 43.3ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:29 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.9ms) +Completed 200 OK in 44ms (Views: 43.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:33 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.6ms) +Completed 200 OK in 43ms (Views: 42.8ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:35 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (65.3ms) +Completed 200 OK in 66ms (Views: 65.5ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:36 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.6ms) +Completed 200 OK in 44ms (Views: 43.9ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:30:06 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (835.4ms) +Completed 200 OK in 838ms (Views: 836.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 15:30:06 -0500 +Started GET "/assets/application-f0e3cde56a16e9c5222c75f287bbad23b8ac0e782db3d56ae40c4f86b0f3217e.js" for 127.0.0.1 at 2021-01-11 15:30:06 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:33:05 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (786.4ms) +Completed 200 OK in 789ms (Views: 787.4ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 15:33:06 -0500 +Started GET "/assets/application-f0e3cde56a16e9c5222c75f287bbad23b8ac0e782db3d56ae40c4f86b0f3217e.js" for 127.0.0.1 at 2021-01-11 15:33:06 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:39:42 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (2547.6ms) +Completed 200 OK in 2551ms (Views: 2549.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 15:39:45 -0500 +Started GET "/assets/application-bb1eb073b882c183b27d7295602a4df2fe93919800e50d317f09629a8656c9e8.js" for 127.0.0.1 at 2021-01-11 15:39:45 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:00:11 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (2266.5ms) +Completed 200 OK in 2271ms (Views: 2267.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:00:13 -0500 +Started GET "/assets/application-db010c7483f9c5bd7c01175e4bd02fce1fa0cc8aef0389cd83b9c4c057318109.js" for 127.0.0.1 at 2021-01-11 18:00:13 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:06:33 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (2339.0ms) +Completed 200 OK in 2342ms (Views: 2340.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:06:36 -0500 +Started GET "/assets/application-0f755e419ce8c501a5ff2478b8c5dbbf7014aff9108fc05fa0427816e3e41bb3.js" for 127.0.0.1 at 2021-01-11 18:06:36 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:08:14 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (2178.8ms) +Completed 200 OK in 2182ms (Views: 2179.9ms) +Started GET "/assets/application-d0c90923b443ebe8d1fda33c8b54f939c64b41e839388c80109ede61f3bb3490.js" for 127.0.0.1 at 2021-01-11 18:08:16 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:08:16 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:08:42 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1817.7ms) +Completed 200 OK in 1820ms (Views: 1818.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:08:44 -0500 +Started GET "/assets/application-6cd10736367bdfab8d23b8fa2374612b215ec6be0447ac4fd3fed90f82d0973c.js" for 127.0.0.1 at 2021-01-11 18:08:44 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:09:11 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (2251.9ms) +Completed 200 OK in 2254ms (Views: 2252.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:09:13 -0500 +Started GET "/assets/application-9d15cf31202a76b8b0907fc0febadb60fb77941e433d26ba2afade625d095edc.js" for 127.0.0.1 at 2021-01-11 18:09:13 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:11:11 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (1846.3ms) +Completed 200 OK in 1849ms (Views: 1847.3ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:11:13 -0500 +Started GET "/assets/application-604613529824cb8379ab4478e7a4f634801bd431bbf5c26edbcc817956025019.js" for 127.0.0.1 at 2021-01-11 18:11:13 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:12:00 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (837.6ms) +Completed 200 OK in 840ms (Views: 838.6ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:12:01 -0500 +Started GET "/assets/application-604613529824cb8379ab4478e7a4f634801bd431bbf5c26edbcc817956025019.js" for 127.0.0.1 at 2021-01-11 18:12:01 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:14:32 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (7280.8ms) +Completed 200 OK in 7284ms (Views: 7281.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:14:39 -0500 +Started GET "/assets/application-e1c6fd154bc3c891f08d3cba2e23903e188beabcbd5eabd12089baa28b7598c7.js" for 127.0.0.1 at 2021-01-11 18:14:39 -0500 +Started GET "/test" for 127.0.0.1 at 2021-01-12 08:09:53 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (0.9ms) +Completed 200 OK in 1080ms (Views: 1080.2ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-12 08:09:54 -0500 +Started GET "/assets/application-604613529824cb8379ab4478e7a4f634801bd431bbf5c26edbcc817956025019.js" for 127.0.0.1 at 2021-01-12 08:09:54 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:09:55 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.9ms) +Completed 200 OK in 44ms (Views: 43.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:14 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (82.1ms) +Completed 200 OK in 83ms (Views: 82.4ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:25 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.0ms) +Completed 200 OK in 43ms (Views: 42.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:26 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (63.5ms) +Completed 200 OK in 64ms (Views: 63.8ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:27 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (48.3ms) +Completed 200 OK in 49ms (Views: 48.5ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:28 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610457029.082207 ********************************************* + Rendered inline template (1035.9ms) +Completed 200 OK in 1037ms (Views: 1036.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:29 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.7ms) +Completed 200 OK in 48ms (Views: 47.3ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:30 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (84.5ms) +Completed 200 OK in 86ms (Views: 84.8ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-12 08:10:30 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:31 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (86.0ms) +Completed 200 OK in 87ms (Views: 86.2ms) +Started GET "/assets/factorial-122fb03ce35a06f24d606974efe2d36a78db36a36bf2f1e9c2794194e9573e7d.js" for 127.0.0.1 at 2021-01-12 08:10:31 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:32 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.2ms) +Completed 200 OK in 44ms (Views: 43.5ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:33 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.7ms) +Completed 200 OK in 44ms (Views: 44.0ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:33 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.1ms) +Completed 200 OK in 43ms (Views: 42.4ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:44 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.9ms) +Completed 200 OK in 45ms (Views: 44.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:55 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.9ms) +Completed 200 OK in 43ms (Views: 42.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:56 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.6ms) +Completed 200 OK in 42ms (Views: 41.9ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:11:00 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.5ms) +Completed 200 OK in 44ms (Views: 43.7ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:11:01 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.1ms) +Completed 200 OK in 43ms (Views: 42.4ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:11:02 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (63.1ms) +Completed 200 OK in 64ms (Views: 63.4ms) +Started GET "/test" for 127.0.0.1 at 2021-01-12 08:21:21 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (0.9ms) +Completed 200 OK in 802ms (Views: 801.8ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-12 08:21:22 -0500 +Started GET "/assets/application-604613529824cb8379ab4478e7a4f634801bd431bbf5c26edbcc817956025019.js" for 127.0.0.1 at 2021-01-12 08:21:22 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:23 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.9ms) +Completed 200 OK in 44ms (Views: 43.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:24 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.8ms) +Completed 200 OK in 45ms (Views: 44.1ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:25 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (70.0ms) +Completed 200 OK in 71ms (Views: 70.3ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:25 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (44.3ms) +Completed 200 OK in 45ms (Views: 44.6ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:26 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.9ms) +Completed 200 OK in 43ms (Views: 42.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:27 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610457687.562117 ********************************************* + Rendered inline template (357.8ms) +Completed 200 OK in 358ms (Views: 358.1ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:28 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.6ms) +Completed 200 OK in 43ms (Views: 43.0ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:28 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.6ms) +Completed 200 OK in 44ms (Views: 43.8ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-12 08:21:28 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:29 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.9ms) +Completed 200 OK in 43ms (Views: 42.2ms) +Started GET "/assets/factorial-122fb03ce35a06f24d606974efe2d36a78db36a36bf2f1e9c2794194e9573e7d.js" for 127.0.0.1 at 2021-01-12 08:21:29 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:30 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (50.8ms) +Completed 200 OK in 51ms (Views: 51.0ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:33 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (58.5ms) +Completed 200 OK in 59ms (Views: 58.7ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:36 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.5ms) +Completed 200 OK in 42ms (Views: 41.8ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:37 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (38.7ms) +Completed 200 OK in 39ms (Views: 39.0ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:38 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (62.9ms) +Completed 200 OK in 64ms (Views: 63.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:39 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.4ms) +Completed 200 OK in 44ms (Views: 43.6ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:42 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.8ms) +Completed 200 OK in 40ms (Views: 40.0ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:44 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (64.0ms) +Completed 200 OK in 65ms (Views: 64.3ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:45 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.8ms) +Completed 200 OK in 40ms (Views: 40.0ms) +Started GET "/test" for 127.0.0.1 at 2021-01-12 08:24:42 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.0ms) +Completed 200 OK in 861ms (Views: 860.7ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-12 08:24:43 -0500 +Started GET "/assets/application-604613529824cb8379ab4478e7a4f634801bd431bbf5c26edbcc817956025019.js" for 127.0.0.1 at 2021-01-12 08:24:43 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:43 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (44.7ms) +Completed 200 OK in 45ms (Views: 45.0ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:44 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (49.2ms) +Completed 200 OK in 50ms (Views: 49.4ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:45 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (42.6ms) +Completed 200 OK in 43ms (Views: 42.9ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:46 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (44.1ms) +Completed 200 OK in 45ms (Views: 44.4ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:46 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.8ms) +Completed 200 OK in 43ms (Views: 42.1ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:47 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610457888.044024 ********************************************* + Rendered inline template (352.0ms) +Completed 200 OK in 353ms (Views: 352.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:48 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.7ms) +Completed 200 OK in 46ms (Views: 46.0ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:49 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (53.4ms) +Completed 200 OK in 54ms (Views: 53.6ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-12 08:24:49 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:50 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (62.8ms) +Completed 200 OK in 63ms (Views: 63.1ms) +Started GET "/assets/factorial-122fb03ce35a06f24d606974efe2d36a78db36a36bf2f1e9c2794194e9573e7d.js" for 127.0.0.1 at 2021-01-12 08:24:50 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:51 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.9ms) +Completed 200 OK in 41ms (Views: 41.1ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:54 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.6ms) +Completed 200 OK in 42ms (Views: 41.9ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:56 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (65.0ms) +Completed 200 OK in 66ms (Views: 65.3ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:57 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.1ms) +Completed 200 OK in 44ms (Views: 43.3ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:58 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (46.7ms) +Completed 200 OK in 47ms (Views: 47.0ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:59 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (65.1ms) +Completed 200 OK in 66ms (Views: 65.4ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:25:03 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.6ms) +Completed 200 OK in 44ms (Views: 43.8ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:25:05 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.9ms) +Completed 200 OK in 41ms (Views: 40.1ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:25:05 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (66.3ms) +Completed 200 OK in 67ms (Views: 66.6ms) +Started GET "/test" for 127.0.0.1 at 2021-01-12 08:26:29 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 1.0ms | Allocations: 458) +Completed 200 OK in 2142ms (Views: 2141.2ms | Allocations: 1852590) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-12 08:26:31 -0500 +Started GET "/assets/application-e1c6fd154bc3c891f08d3cba2e23903e188beabcbd5eabd12089baa28b7598c7.js" for 127.0.0.1 at 2021-01-12 08:26:31 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:32 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 42.7ms | Allocations: 73248) +Completed 200 OK in 44ms (Views: 43.0ms | Allocations: 73662) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:33 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 76.3ms | Allocations: 73372) +Completed 200 OK in 77ms (Views: 76.8ms | Allocations: 73605) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:34 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 84.6ms | Allocations: 73377) +Completed 200 OK in 86ms (Views: 85.6ms | Allocations: 73610) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:34 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 43.9ms | Allocations: 73398) +Completed 200 OK in 45ms (Views: 44.2ms | Allocations: 73631) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:35 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 43.0ms | Allocations: 73376) +Completed 200 OK in 44ms (Views: 43.3ms | Allocations: 73609) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:36 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610457996.778383 ********************************************* + Rendered inline template (Duration: 655.4ms | Allocations: 253413) +Completed 200 OK in 656ms (Views: 655.7ms | Allocations: 253657) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:37 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 1.6ms | Allocations: 1706) +Completed 200 OK in 42ms (Views: 41.9ms | Allocations: 73551) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:37 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 44.2ms | Allocations: 73855) +Completed 200 OK in 45ms (Views: 44.5ms | Allocations: 74089) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-12 08:26:38 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:38 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 62.9ms | Allocations: 74632) +Completed 200 OK in 64ms (Views: 63.4ms | Allocations: 74866) +Started GET "/assets/factorial-f4fa0c489ec4019295bbf2817a14a0708473bcb7f48bf3e8a4a44a52062bb7f9.js" for 127.0.0.1 at 2021-01-12 08:26:38 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:39 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 90.9ms | Allocations: 73467) +Completed 200 OK in 92ms (Views: 91.3ms | Allocations: 73700) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:42 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 43.6ms | Allocations: 73429) +Completed 200 OK in 44ms (Views: 43.8ms | Allocations: 73662) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:45 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 43.6ms | Allocations: 73496) +Completed 200 OK in 44ms (Views: 43.9ms | Allocations: 73729) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:46 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 68.5ms | Allocations: 73527) +Completed 200 OK in 69ms (Views: 68.8ms | Allocations: 73760) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:47 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 42.3ms | Allocations: 73386) +Completed 200 OK in 43ms (Views: 42.5ms | Allocations: 73619) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:47 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 40.2ms | Allocations: 73381) +Completed 200 OK in 41ms (Views: 40.5ms | Allocations: 73614) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:51 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 41.1ms | Allocations: 73381) +Completed 200 OK in 42ms (Views: 41.4ms | Allocations: 73614) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:53 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 46.0ms | Allocations: 73402) +Completed 200 OK in 47ms (Views: 46.2ms | Allocations: 73635) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:53 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 42.6ms | Allocations: 73381) +Completed 200 OK in 43ms (Views: 42.9ms | Allocations: 73614) +Started GET "/test" for 127.0.0.1 at 2021-01-12 08:28:34 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (0.9ms) +Completed 200 OK in 973ms (Views: 972.9ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-12 08:28:35 -0500 +Started GET "/assets/application-e1c6fd154bc3c891f08d3cba2e23903e188beabcbd5eabd12089baa28b7598c7.js" for 127.0.0.1 at 2021-01-12 08:28:35 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:36 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.5ms) +Completed 200 OK in 44ms (Views: 43.8ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:37 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (74.1ms) +Completed 200 OK in 75ms (Views: 74.4ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:37 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (39.7ms) +Completed 200 OK in 40ms (Views: 39.9ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:38 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.1ms) +Completed 200 OK in 41ms (Views: 40.4ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:39 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.6ms) +Completed 200 OK in 43ms (Views: 41.9ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:39 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610458120.734995 ********************************************* + Rendered inline template (932.3ms) +Completed 200 OK in 933ms (Views: 932.5ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:41 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.5ms) +Completed 200 OK in 45ms (Views: 44.7ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:41 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (64.2ms) +Completed 200 OK in 65ms (Views: 64.5ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-12 08:28:42 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:42 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (126.0ms) +Completed 200 OK in 127ms (Views: 126.3ms) +Started GET "/assets/factorial-f4fa0c489ec4019295bbf2817a14a0708473bcb7f48bf3e8a4a44a52062bb7f9.js" for 127.0.0.1 at 2021-01-12 08:28:42 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:43 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (66.3ms) +Completed 200 OK in 67ms (Views: 66.5ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:46 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (65.0ms) +Completed 200 OK in 66ms (Views: 65.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:49 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (95.8ms) +Completed 200 OK in 97ms (Views: 96.1ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:50 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (44.9ms) +Completed 200 OK in 45ms (Views: 45.1ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:51 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (40.4ms) +Completed 200 OK in 41ms (Views: 40.7ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:51 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (41.3ms) +Completed 200 OK in 42ms (Views: 41.5ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:55 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.0ms) +Completed 200 OK in 44ms (Views: 43.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:57 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (43.5ms) +Completed 200 OK in 44ms (Views: 43.8ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:57 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (64.3ms) +Completed 200 OK in 65ms (Views: 64.5ms) +Started GET "/test" for 127.0.0.1 at 2021-01-13 13:23:14 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.8ms) +Completed 200 OK in 1981ms (Views: 1981.0ms) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-13 13:23:16 -0500 +Started GET "/assets/application-e1c6fd154bc3c891f08d3cba2e23903e188beabcbd5eabd12089baa28b7598c7.js" for 127.0.0.1 at 2021-01-13 13:23:16 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:17 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (103.1ms) +Completed 200 OK in 105ms (Views: 103.7ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:18 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (100.1ms) +Completed 200 OK in 101ms (Views: 100.5ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:19 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (165.6ms) +Completed 200 OK in 167ms (Views: 166.0ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:20 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (224.6ms) +Completed 200 OK in 226ms (Views: 225.0ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:21 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (99.3ms) +Completed 200 OK in 101ms (Views: 100.1ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:22 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610562203.118643 ********************************************* + Rendered inline template (701.0ms) +Completed 200 OK in 702ms (Views: 701.5ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:23 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (2.6ms) +Completed 200 OK in 132ms (Views: 131.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:24 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (95.7ms) +Completed 200 OK in 97ms (Views: 96.4ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-13 13:23:24 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:25 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (109.0ms) +Completed 200 OK in 110ms (Views: 109.4ms) +Started GET "/assets/factorial-f4fa0c489ec4019295bbf2817a14a0708473bcb7f48bf3e8a4a44a52062bb7f9.js" for 127.0.0.1 at 2021-01-13 13:23:25 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:27 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (114.4ms) +Completed 200 OK in 116ms (Views: 114.9ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:30 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (76.9ms) +Completed 200 OK in 78ms (Views: 77.3ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:33 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (83.9ms) +Completed 200 OK in 85ms (Views: 84.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:34 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (77.4ms) +Completed 200 OK in 78ms (Views: 77.8ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:35 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (70.7ms) +Completed 200 OK in 73ms (Views: 71.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:36 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (70.4ms) +Completed 200 OK in 72ms (Views: 70.8ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:39 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (127.4ms) +Completed 200 OK in 129ms (Views: 127.9ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:41 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (88.3ms) +Completed 200 OK in 89ms (Views: 88.7ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:42 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (77.9ms) +Completed 200 OK in 79ms (Views: 78.3ms) +Started GET "/test" for 127.0.0.1 at 2021-01-13 13:27:25 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (1.8ms) +Completed 200 OK in 1679ms (Views: 1678.3ms) +Started GET "/assets/application-e1c6fd154bc3c891f08d3cba2e23903e188beabcbd5eabd12089baa28b7598c7.js" for 127.0.0.1 at 2021-01-13 13:27:27 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-13 13:27:27 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:28 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (74.7ms) +Completed 200 OK in 76ms (Views: 75.1ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:29 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (149.3ms) +Completed 200 OK in 151ms (Views: 149.8ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:30 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (86.0ms) +Completed 200 OK in 87ms (Views: 86.4ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:31 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (79.9ms) +Completed 200 OK in 81ms (Views: 80.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:31 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (95.0ms) +Completed 200 OK in 96ms (Views: 95.4ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:32 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610562453.2663019 ********************************************* + Rendered inline template (547.3ms) +Completed 200 OK in 548ms (Views: 547.7ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:33 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (2.0ms) +Completed 200 OK in 80ms (Views: 79.7ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:34 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (116.3ms) +Completed 200 OK in 117ms (Views: 116.6ms) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-13 13:27:34 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:35 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (91.4ms) +Completed 200 OK in 92ms (Views: 91.8ms) +Started GET "/assets/factorial-f4fa0c489ec4019295bbf2817a14a0708473bcb7f48bf3e8a4a44a52062bb7f9.js" for 127.0.0.1 at 2021-01-13 13:27:35 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:36 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (123.8ms) +Completed 200 OK in 125ms (Views: 124.4ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:39 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (98.9ms) +Completed 200 OK in 101ms (Views: 99.4ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:42 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (79.1ms) +Completed 200 OK in 80ms (Views: 79.4ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:44 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (75.8ms) +Completed 200 OK in 77ms (Views: 76.2ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:45 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (65.0ms) +Completed 200 OK in 66ms (Views: 65.5ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:46 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (121.5ms) +Completed 200 OK in 123ms (Views: 121.9ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:49 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (70.2ms) +Completed 200 OK in 71ms (Views: 70.5ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:51 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (109.0ms) +Completed 200 OK in 111ms (Views: 110.5ms) +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:52 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (85.7ms) +Completed 200 OK in 87ms (Views: 86.1ms) +Started GET "/test" for 127.0.0.1 at 2021-01-15 08:58:47 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 1.2ms | Allocations: 458) +Completed 200 OK in 2629ms (Views: 2629.2ms | Allocations: 1824133) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 08:58:49 -0500 +Started GET "/assets/application-ed73017d0eda603a9143e894a7f478a18397f905fe0e44b83109df164382949d.js" for 127.0.0.1 at 2021-01-15 08:58:49 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-15 08:58:50 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 77.2ms | Allocations: 73692) +Completed 200 OK in 78ms (Views: 77.5ms | Allocations: 74148) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-15 08:59:39 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 949.5ms | Allocations: 1450662) +Completed 200 OK in 954ms (Views: 951.1ms | Allocations: 1452506) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 08:59:40 -0500 +Started GET "/assets/application-ed73017d0eda603a9143e894a7f478a18397f905fe0e44b83109df164382949d.js" for 127.0.0.1 at 2021-01-15 08:59:40 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-15 09:07:25 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 938.4ms | Allocations: 1450662) +Completed 200 OK in 942ms (Views: 939.7ms | Allocations: 1452506) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 09:07:26 -0500 +Started GET "/assets/application-ed73017d0eda603a9143e894a7f478a18397f905fe0e44b83109df164382949d.js" for 127.0.0.1 at 2021-01-15 09:07:26 -0500 +Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-15 09:11:04 -0500 +Processing by HyperstackTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1788.9ms | Allocations: 1704600) +Completed 200 OK in 1792ms (Views: 1790.2ms | Allocations: 1706435) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 09:11:06 -0500 +Started GET "/assets/application-e1c6fd154bc3c891f08d3cba2e23903e188beabcbd5eabd12089baa28b7598c7.js" for 127.0.0.1 at 2021-01-15 09:11:06 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-15 09:20:24 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 2144.1ms | Allocations: 1755418) +Completed 200 OK in 2147ms (Views: 2145.4ms | Allocations: 1757262) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 09:20:26 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-15 09:20:26 -0500 +Started GET "/test" for 127.0.0.1 at 2021-01-15 09:27:49 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 1.1ms | Allocations: 458) +Completed 200 OK in 1111ms (Views: 1110.7ms | Allocations: 1451573) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 09:27:51 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-15 09:27:51 -0500 +Started GET "/test" for 127.0.0.1 at 2021-01-15 09:28:11 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 0.8ms | Allocations: 458) +Completed 200 OK in 931ms (Views: 930.4ms | Allocations: 1451572) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 09:28:12 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-15 09:28:12 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-15 09:28:13 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 94.8ms | Allocations: 73896) +Completed 200 OK in 96ms (Views: 95.0ms | Allocations: 74707) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-15 09:28:14 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 71.2ms | Allocations: 73996) +Completed 200 OK in 73ms (Views: 71.4ms | Allocations: 74626) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-15 09:28:14 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 40.5ms | Allocations: 73580) +Completed 200 OK in 41ms (Views: 40.7ms | Allocations: 74202) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-15 09:28:15 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 44.0ms | Allocations: 73643) +Completed 200 OK in 45ms (Views: 44.3ms | Allocations: 74265) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-15 09:28:16 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 41.8ms | Allocations: 73998) +Completed 200 OK in 43ms (Views: 42.1ms | Allocations: 74627) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-15 09:28:16 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610720897.783325 ********************************************* + Rendered inline template (Duration: 1029.6ms | Allocations: 311476) +Completed 200 OK in 1031ms (Views: 1029.9ms | Allocations: 312110) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2021-01-15 09:28:18 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 1.6ms | Allocations: 1777) +Completed 200 OK in 43ms (Views: 42.5ms | Allocations: 74587) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2021-01-15 09:28:18 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (Duration: 40.6ms | Allocations: 74477) +Completed 200 OK in 41ms (Views: 40.8ms | Allocations: 75114) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-15 09:28:19 -0500 +Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2021-01-15 09:28:19 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"9"} + Rendering inline template + Rendered inline template (Duration: 72.4ms | Allocations: 74766) +Completed 200 OK in 73ms (Views: 72.7ms | Allocations: 75397) +Started GET "/assets/factorial-9c6c386c7e12a3c7e87ac624641651a74839b568d510017fc068622d3fb09d4f.js" for 127.0.0.1 at 2021-01-15 09:28:19 -0500 +Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2021-01-15 09:28:20 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"10"} + Rendering inline template + Rendered inline template (Duration: 61.4ms | Allocations: 73646) +Completed 200 OK in 62ms (Views: 61.7ms | Allocations: 74268) +Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2021-01-15 09:28:23 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"11"} + Rendering inline template + Rendered inline template (Duration: 94.7ms | Allocations: 73653) +Completed 200 OK in 96ms (Views: 95.0ms | Allocations: 74275) +Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2021-01-15 09:28:26 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"12"} + Rendering inline template + Rendered inline template (Duration: 39.6ms | Allocations: 74123) +Completed 200 OK in 41ms (Views: 39.9ms | Allocations: 74752) +Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2021-01-15 09:28:27 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"13"} + Rendering inline template + Rendered inline template (Duration: 71.1ms | Allocations: 74118) +Completed 200 OK in 72ms (Views: 71.3ms | Allocations: 74747) +Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2021-01-15 09:28:28 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"14"} + Rendering inline template + Rendered inline template (Duration: 57.1ms | Allocations: 73575) +Completed 200 OK in 58ms (Views: 57.5ms | Allocations: 74197) +Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2021-01-15 09:28:28 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15"} + Rendering inline template + Rendered inline template (Duration: 65.9ms | Allocations: 73574) +Completed 200 OK in 67ms (Views: 66.1ms | Allocations: 74196) +Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2021-01-15 09:28:32 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"16"} + Rendering inline template + Rendered inline template (Duration: 48.0ms | Allocations: 73579) +Completed 200 OK in 49ms (Views: 48.3ms | Allocations: 74201) +Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2021-01-15 09:28:34 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"17"} + Rendering inline template + Rendered inline template (Duration: 39.0ms | Allocations: 73574) +Completed 200 OK in 40ms (Views: 39.4ms | Allocations: 74196) +Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2021-01-15 09:28:34 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"18"} + Rendering inline template + Rendered inline template (Duration: 42.8ms | Allocations: 73574) +Completed 200 OK in 44ms (Views: 43.1ms | Allocations: 74196) +Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2021-01-15 09:28:35 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"19"} + Rendering inline template + Rendered inline template (Duration: 43.4ms | Allocations: 73574) +Completed 200 OK in 44ms (Views: 43.6ms | Allocations: 74196) +Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2021-01-15 09:28:36 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"20"} + Rendering inline template + Rendered inline template (Duration: 38.6ms | Allocations: 73575) +Completed 200 OK in 39ms (Views: 38.9ms | Allocations: 74197) +Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2021-01-15 09:28:36 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"21"} + Rendering inline template + Rendered inline template (Duration: 77.0ms | Allocations: 73588) +Completed 200 OK in 78ms (Views: 77.2ms | Allocations: 74210) +Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2021-01-15 09:28:37 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"22"} + Rendering inline template + Rendered inline template (Duration: 42.7ms | Allocations: 73579) +Completed 200 OK in 43ms (Views: 43.0ms | Allocations: 74201) +Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2021-01-15 09:28:39 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"23"} + Rendering inline template + Rendered inline template (Duration: 38.8ms | Allocations: 73574) +Completed 200 OK in 40ms (Views: 39.1ms | Allocations: 74196) +Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2021-01-15 09:28:39 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"24"} + Rendering inline template + Rendered inline template (Duration: 38.5ms | Allocations: 73574) +Completed 200 OK in 39ms (Views: 38.8ms | Allocations: 74196) +Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2021-01-15 09:28:40 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"25"} + Rendering inline template + Rendered inline template (Duration: 42.2ms | Allocations: 73574) +Completed 200 OK in 43ms (Views: 42.5ms | Allocations: 74196) +Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2021-01-15 09:28:40 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"26"} + Rendering inline template + Rendered inline template (Duration: 41.2ms | Allocations: 73574) +Completed 200 OK in 42ms (Views: 41.5ms | Allocations: 74196) +Started GET "/hyper_spec_test/27" for 127.0.0.1 at 2021-01-15 09:28:41 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"27"} + Rendering inline template + Rendered inline template (Duration: 41.1ms | Allocations: 73579) +Completed 200 OK in 42ms (Views: 41.4ms | Allocations: 74201) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 17:52:20 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1328.6ms | Allocations: 1473006) +Completed 200 OK in 1333ms (Views: 1330.3ms | Allocations: 1474847) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 17:52:21 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-16 17:52:21 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 17:53:21 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1240.4ms | Allocations: 1451050) +Completed 200 OK in 1245ms (Views: 1242.4ms | Allocations: 1452891) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 17:53:22 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-16 17:53:22 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 17:53:45 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1218.6ms | Allocations: 1451046) +Completed 200 OK in 1223ms (Views: 1220.3ms | Allocations: 1452887) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 17:53:46 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-16 17:53:46 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 17:54:02 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1256.2ms | Allocations: 1451049) +Completed 200 OK in 1261ms (Views: 1257.8ms | Allocations: 1452890) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 17:54:03 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-16 17:54:03 -0500 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-16 17:54:28 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 46.2ms | Allocations: 74002) +Completed 200 OK in 47ms (Views: 46.6ms | Allocations: 74632) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-16 17:54:59 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 44.4ms | Allocations: 74010) +Completed 200 OK in 45ms (Views: 44.7ms | Allocations: 74642) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 17:59:34 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 2944.3ms | Allocations: 2368901) +Completed 200 OK in 2948ms (Views: 2945.8ms | Allocations: 2370741) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 17:59:37 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 17:59:37 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:06:13 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1233.7ms | Allocations: 1452853) +Completed 200 OK in 1237ms (Views: 1235.1ms | Allocations: 1454694) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:06:15 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:06:15 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:09:02 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1263.2ms | Allocations: 1452853) +Completed 200 OK in 1267ms (Views: 1264.7ms | Allocations: 1454694) +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:09:03 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:09:03 -0500 +Started GET "/test" for 127.0.0.1 at 2021-01-16 18:10:49 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 1.3ms | Allocations: 458) +Completed 200 OK in 1108ms (Views: 1107.8ms | Allocations: 1453377) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:10:50 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:10:50 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:10:51 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 45.9ms | Allocations: 74552) +Completed 200 OK in 47ms (Views: 46.2ms | Allocations: 75008) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-16 18:10:52 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 45.6ms | Allocations: 74674) +Completed 200 OK in 46ms (Views: 45.8ms | Allocations: 74972) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-16 18:10:52 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 45.0ms | Allocations: 74656) +Completed 200 OK in 46ms (Views: 45.3ms | Allocations: 74953) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-16 18:10:53 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 79.9ms | Allocations: 74701) +Completed 200 OK in 81ms (Views: 80.2ms | Allocations: 74998) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-16 18:10:54 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 42.0ms | Allocations: 74683) +Completed 200 OK in 43ms (Views: 42.4ms | Allocations: 74980) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-16 18:10:55 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610838656.4104981 ********************************************* + Rendered inline template (Duration: 1350.2ms | Allocations: 298203) +Completed 200 OK in 1355ms (Views: 1354.4ms | Allocations: 298505) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2021-01-16 18:10:57 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 1.7ms | Allocations: 1777) +Completed 200 OK in 51ms (Views: 50.3ms | Allocations: 74927) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2021-01-16 18:10:57 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (Duration: 43.6ms | Allocations: 75159) +Completed 200 OK in 44ms (Views: 43.9ms | Allocations: 75464) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-16 18:10:57 -0500 +Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2021-01-16 18:10:58 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"9"} + Rendering inline template + Rendered inline template (Duration: 75.4ms | Allocations: 75866) +Completed 200 OK in 76ms (Views: 75.6ms | Allocations: 76171) +Started GET "/assets/factorial-102125a7e1b156e38a7f308a49fb6b300a5ea4e6aa4980068e4903fdbfdd443c.js" for 127.0.0.1 at 2021-01-16 18:10:58 -0500 +Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2021-01-16 18:10:59 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"10"} + Rendering inline template + Rendered inline template (Duration: 58.6ms | Allocations: 74729) +Completed 200 OK in 60ms (Views: 59.0ms | Allocations: 75026) +Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2021-01-16 18:11:00 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"11"} + Rendering inline template + Rendered inline template (Duration: 115.5ms | Allocations: 74736) +Completed 200 OK in 116ms (Views: 115.8ms | Allocations: 75033) +Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2021-01-16 18:11:01 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"12"} + Rendering inline template + Rendered inline template (Duration: 46.1ms | Allocations: 74804) +Completed 200 OK in 47ms (Views: 46.4ms | Allocations: 75101) +Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2021-01-16 18:11:02 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"13"} + Rendering inline template + Rendered inline template (Duration: 44.9ms | Allocations: 74798) +Completed 200 OK in 46ms (Views: 45.2ms | Allocations: 75095) +Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2021-01-16 18:11:03 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"14"} + Rendering inline template + Rendered inline template (Duration: 43.9ms | Allocations: 74685) +Completed 200 OK in 45ms (Views: 44.2ms | Allocations: 74982) +Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2021-01-16 18:11:04 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15"} + Rendering inline template + Rendered inline template (Duration: 83.8ms | Allocations: 74694) +Completed 200 OK in 85ms (Views: 84.1ms | Allocations: 74991) +Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2021-01-16 18:11:08 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"16"} + Rendering inline template + Rendered inline template (Duration: 45.9ms | Allocations: 74689) +Completed 200 OK in 47ms (Views: 46.3ms | Allocations: 74986) +Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2021-01-16 18:11:10 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"17"} + Rendering inline template + Rendered inline template (Duration: 48.2ms | Allocations: 74684) +Completed 200 OK in 49ms (Views: 48.5ms | Allocations: 74981) +Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2021-01-16 18:11:10 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"18"} + Rendering inline template + Rendered inline template (Duration: 44.1ms | Allocations: 74685) +Completed 200 OK in 45ms (Views: 44.4ms | Allocations: 74982) +Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2021-01-16 18:11:11 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"19"} + Rendering inline template + Rendered inline template (Duration: 53.1ms | Allocations: 74684) +Completed 200 OK in 54ms (Views: 53.5ms | Allocations: 74981) +Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2021-01-16 18:11:12 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"20"} + Rendering inline template + Rendered inline template (Duration: 82.0ms | Allocations: 74694) +Completed 200 OK in 83ms (Views: 82.3ms | Allocations: 74991) +Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2021-01-16 18:11:13 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"21"} + Rendering inline template + Rendered inline template (Duration: 43.7ms | Allocations: 74689) +Completed 200 OK in 44ms (Views: 44.0ms | Allocations: 74986) +Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2021-01-16 18:11:13 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"22"} + Rendering inline template + Rendered inline template (Duration: 45.7ms | Allocations: 74684) +Completed 200 OK in 47ms (Views: 46.0ms | Allocations: 74981) +Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2021-01-16 18:11:25 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"23"} + Rendering inline template + Rendered inline template (Duration: 46.6ms | Allocations: 74684) +Completed 200 OK in 48ms (Views: 47.0ms | Allocations: 75379) +Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2021-01-16 18:11:25 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"24"} + Rendering inline template + Rendered inline template (Duration: 103.6ms | Allocations: 74692) +Completed 200 OK in 105ms (Views: 103.9ms | Allocations: 75321) +Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2021-01-16 18:11:26 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"25"} + Rendering inline template + Rendered inline template (Duration: 44.8ms | Allocations: 74689) +Completed 200 OK in 46ms (Views: 45.1ms | Allocations: 75318) +Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2021-01-16 18:11:27 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"26"} + Rendering inline template + Rendered inline template (Duration: 46.1ms | Allocations: 74684) +Completed 200 OK in 47ms (Views: 46.4ms | Allocations: 75313) +Started GET "/hyper_spec_test/27" for 127.0.0.1 at 2021-01-16 18:11:28 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"27"} + Rendering inline template + Rendered inline template (Duration: 48.7ms | Allocations: 74684) +Completed 200 OK in 50ms (Views: 48.9ms | Allocations: 75313) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:12:19 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1095.9ms | Allocations: 1452745) +Completed 200 OK in 1100ms (Views: 1097.5ms | Allocations: 1454589) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:12:20 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:12:20 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:27:37 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1060.7ms | Allocations: 1452894) +Completed 200 OK in 1065ms (Views: 1062.3ms | Allocations: 1454985) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:27:38 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:27:38 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:53:29 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1089.7ms | Allocations: 1452896) +Completed 200 OK in 1094ms (Views: 1091.8ms | Allocations: 1454986) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:53:30 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:53:30 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:57:55 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1086.9ms | Allocations: 1452896) +Completed 200 OK in 1091ms (Views: 1088.8ms | Allocations: 1454986) +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:57:56 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:57:56 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:58:52 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1135.5ms | Allocations: 1452896) +Completed 200 OK in 1140ms (Views: 1137.3ms | Allocations: 1454987) +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:58:53 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:58:53 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:00:13 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1098.1ms | Allocations: 1452896) +Completed 200 OK in 1103ms (Views: 1099.9ms | Allocations: 1454986) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:00:14 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:00:14 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:01:55 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1149.1ms | Allocations: 1452896) +Completed 200 OK in 1154ms (Views: 1151.0ms | Allocations: 1454986) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:01:56 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:01:56 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:03:59 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1119.8ms | Allocations: 1452896) +Completed 200 OK in 1125ms (Views: 1121.6ms | Allocations: 1454987) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:04:00 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:04:00 -0500 +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-16 19:04:54 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 52.1ms | Allocations: 74663) +Completed 200 OK in 53ms (Views: 52.4ms | Allocations: 76590) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:06:23 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1042.4ms | Allocations: 1452896) +Completed 200 OK in 1046ms (Views: 1043.8ms | Allocations: 1454987) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:06:24 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:06:24 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:07:16 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1032.8ms | Allocations: 1452896) +Completed 200 OK in 1036ms (Views: 1034.3ms | Allocations: 1454987) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:07:17 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:07:17 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:09:19 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1057.3ms | Allocations: 1452919) +Completed 200 OK in 1061ms (Views: 1058.7ms | Allocations: 1455010) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:09:20 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:09:20 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:10:31 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1053.8ms | Allocations: 1452920) +Completed 200 OK in 1058ms (Views: 1055.3ms | Allocations: 1455010) +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:10:32 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:10:32 -0500 +Started GET "/test" for 127.0.0.1 at 2021-01-16 20:59:38 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 1.4ms | Allocations: 458) +Completed 200 OK in 1157ms (Views: 1156.6ms | Allocations: 1453377) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 20:59:39 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 20:59:39 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 20:59:40 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 44.1ms | Allocations: 74575) +Completed 200 OK in 45ms (Views: 44.4ms | Allocations: 75031) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-16 20:59:41 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 46.3ms | Allocations: 74699) +Completed 200 OK in 47ms (Views: 46.6ms | Allocations: 74997) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-16 20:59:41 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 46.0ms | Allocations: 74679) +Completed 200 OK in 47ms (Views: 46.3ms | Allocations: 74976) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-16 20:59:42 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 84.9ms | Allocations: 74727) +Completed 200 OK in 86ms (Views: 85.3ms | Allocations: 75024) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-16 20:59:43 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 43.4ms | Allocations: 74707) +Completed 200 OK in 44ms (Views: 43.7ms | Allocations: 75004) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-16 20:59:43 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610848784.215991 ********************************************* + Rendered inline template (Duration: 278.9ms | Allocations: 78911) +Completed 200 OK in 280ms (Views: 279.3ms | Allocations: 79213) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2021-01-16 20:59:44 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 2.1ms | Allocations: 1797) +Completed 200 OK in 63ms (Views: 62.4ms | Allocations: 74930) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2021-01-16 20:59:45 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (Duration: 60.6ms | Allocations: 75182) +Completed 200 OK in 62ms (Views: 61.0ms | Allocations: 75487) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-16 20:59:45 -0500 +Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2021-01-16 20:59:46 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"9"} + Rendering inline template + Rendered inline template (Duration: 126.7ms | Allocations: 75900) +Completed 200 OK in 128ms (Views: 127.0ms | Allocations: 76205) +Started GET "/assets/factorial-102125a7e1b156e38a7f308a49fb6b300a5ea4e6aa4980068e4903fdbfdd443c.js" for 127.0.0.1 at 2021-01-16 20:59:46 -0500 +Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2021-01-16 20:59:52 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"10"} + Rendering inline template + Rendered inline template (Duration: 55.0ms | Allocations: 74772) +Completed 200 OK in 56ms (Views: 55.4ms | Allocations: 75467) +Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2021-01-16 20:59:53 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"11"} + Rendering inline template + Rendered inline template (Duration: 46.8ms | Allocations: 74823) +Completed 200 OK in 48ms (Views: 47.1ms | Allocations: 75453) +Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2021-01-16 20:59:54 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"12"} + Rendering inline template + Rendered inline template (Duration: 95.3ms | Allocations: 74830) +Completed 200 OK in 96ms (Views: 95.6ms | Allocations: 75459) +Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2021-01-16 20:59:55 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"13"} + Rendering inline template + Rendered inline template (Duration: 42.5ms | Allocations: 74713) +Completed 200 OK in 43ms (Views: 42.8ms | Allocations: 75342) +Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2021-01-16 20:59:56 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"14"} + Rendering inline template + Rendered inline template (Duration: 41.6ms | Allocations: 74708) +Completed 200 OK in 43ms (Views: 41.9ms | Allocations: 75337) +Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2021-01-16 20:59:59 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15"} + Rendering inline template + Rendered inline template (Duration: 45.5ms | Allocations: 74708) +Completed 200 OK in 47ms (Views: 45.8ms | Allocations: 75337) +Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2021-01-16 21:00:01 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"16"} + Rendering inline template + Rendered inline template (Duration: 41.6ms | Allocations: 74708) +Completed 200 OK in 43ms (Views: 41.9ms | Allocations: 75337) +Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2021-01-16 21:00:02 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"17"} + Rendering inline template + Rendered inline template (Duration: 43.1ms | Allocations: 74728) +Completed 200 OK in 44ms (Views: 43.4ms | Allocations: 75357) +Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2021-01-16 21:00:09 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"18"} + Rendering inline template + Rendered inline template (Duration: 41.2ms | Allocations: 74708) +Completed 200 OK in 42ms (Views: 41.5ms | Allocations: 75590) +Started GET "/test" for 127.0.0.1 at 2021-01-16 21:06:35 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 1.1ms | Allocations: 458) +Completed 200 OK in 1160ms (Views: 1159.2ms | Allocations: 1453377) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 21:06:36 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 21:06:36 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 21:06:37 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 46.3ms | Allocations: 74575) +Completed 200 OK in 47ms (Views: 46.6ms | Allocations: 75031) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-16 21:06:38 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 43.6ms | Allocations: 74699) +Completed 200 OK in 45ms (Views: 44.0ms | Allocations: 74997) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-16 21:06:38 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 42.5ms | Allocations: 74679) +Completed 200 OK in 43ms (Views: 42.8ms | Allocations: 74976) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-16 21:06:39 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 82.7ms | Allocations: 74726) +Completed 200 OK in 84ms (Views: 83.0ms | Allocations: 75023) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-16 21:06:40 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 41.6ms | Allocations: 74708) +Completed 200 OK in 42ms (Views: 42.0ms | Allocations: 75005) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-16 21:06:40 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610849201.057987 ********************************************* + Rendered inline template (Duration: 278.0ms | Allocations: 78911) +Completed 200 OK in 279ms (Views: 278.3ms | Allocations: 79213) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2021-01-16 21:06:41 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 2.4ms | Allocations: 1797) +Completed 200 OK in 61ms (Views: 60.5ms | Allocations: 74930) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2021-01-16 21:06:42 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (Duration: 63.5ms | Allocations: 75182) +Completed 200 OK in 64ms (Views: 63.9ms | Allocations: 75487) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-16 21:06:42 -0500 +Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2021-01-16 21:06:42 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"9"} + Rendering inline template + Rendered inline template (Duration: 118.0ms | Allocations: 75900) +Completed 200 OK in 119ms (Views: 118.3ms | Allocations: 76205) +Started GET "/assets/factorial-102125a7e1b156e38a7f308a49fb6b300a5ea4e6aa4980068e4903fdbfdd443c.js" for 127.0.0.1 at 2021-01-16 21:06:43 -0500 +Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2021-01-16 21:06:48 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"10"} + Rendering inline template + Rendered inline template (Duration: 52.2ms | Allocations: 74772) +Completed 200 OK in 53ms (Views: 52.5ms | Allocations: 75467) +Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2021-01-16 21:06:48 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"11"} + Rendering inline template + Rendered inline template (Duration: 43.9ms | Allocations: 74752) +Completed 200 OK in 45ms (Views: 44.2ms | Allocations: 75382) +Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2021-01-16 21:06:49 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"12"} + Rendering inline template + Rendered inline template (Duration: 43.0ms | Allocations: 74823) +Completed 200 OK in 44ms (Views: 43.3ms | Allocations: 75452) +Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2021-01-16 21:06:50 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"13"} + Rendering inline template + Rendered inline template (Duration: 42.2ms | Allocations: 74842) +Completed 200 OK in 43ms (Views: 42.5ms | Allocations: 75472) +Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2021-01-16 21:06:51 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"14"} + Rendering inline template + Rendered inline template (Duration: 42.4ms | Allocations: 74708) +Completed 200 OK in 43ms (Views: 42.7ms | Allocations: 75337) +Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2021-01-16 21:06:52 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15"} + Rendering inline template + Rendered inline template (Duration: 41.9ms | Allocations: 74708) +Completed 200 OK in 43ms (Views: 42.2ms | Allocations: 75337) +Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2021-01-16 21:06:55 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"16"} + Rendering inline template + Rendered inline template (Duration: 41.1ms | Allocations: 74708) +Completed 200 OK in 42ms (Views: 41.6ms | Allocations: 75337) +Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2021-01-16 21:06:57 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"17"} + Rendering inline template + Rendered inline template (Duration: 76.2ms | Allocations: 74732) +Completed 200 OK in 77ms (Views: 76.5ms | Allocations: 75361) +Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2021-01-16 21:06:58 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"18"} + Rendering inline template + Rendered inline template (Duration: 45.4ms | Allocations: 74712) +Completed 200 OK in 46ms (Views: 45.7ms | Allocations: 75341) +Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2021-01-16 21:06:58 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"19"} + Rendering inline template + Rendered inline template (Duration: 40.0ms | Allocations: 74708) +Completed 200 OK in 41ms (Views: 40.3ms | Allocations: 75337) +Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2021-01-16 21:06:59 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"20"} + Rendering inline template + Rendered inline template (Duration: 40.7ms | Allocations: 74708) +Completed 200 OK in 42ms (Views: 41.0ms | Allocations: 75337) +Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2021-01-16 21:07:00 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"21"} + Rendering inline template + Rendered inline template (Duration: 41.5ms | Allocations: 74708) +Completed 200 OK in 56ms (Views: 55.7ms | Allocations: 75337) +Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2021-01-16 21:07:00 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"22"} + Rendering inline template + Rendered inline template (Duration: 41.8ms | Allocations: 74728) +Completed 200 OK in 43ms (Views: 42.1ms | Allocations: 75358) +Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2021-01-16 21:07:06 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"23"} + Rendering inline template + Rendered inline template (Duration: 53.2ms | Allocations: 74708) +Completed 200 OK in 54ms (Views: 53.5ms | Allocations: 75590) +Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2021-01-16 21:07:07 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"24"} + Rendering inline template + Rendered inline template (Duration: 40.7ms | Allocations: 74708) +Completed 200 OK in 42ms (Views: 41.0ms | Allocations: 75590) +Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2021-01-16 21:07:08 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"25"} + Rendering inline template + Rendered inline template (Duration: 44.8ms | Allocations: 74708) +Completed 200 OK in 46ms (Views: 45.1ms | Allocations: 75590) +Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2021-01-16 21:07:08 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"26"} + Rendering inline template + Rendered inline template (Duration: 44.5ms | Allocations: 74708) +Completed 200 OK in 46ms (Views: 44.8ms | Allocations: 75590) +Started GET "/hyper_spec_test/27" for 127.0.0.1 at 2021-01-16 21:07:09 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"27"} + Rendering inline template + Rendered inline template (Duration: 42.3ms | Allocations: 74728) +Completed 200 OK in 43ms (Views: 42.6ms | Allocations: 75611) +Started GET "/test" for 127.0.0.1 at 2021-01-16 21:11:41 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 1.1ms | Allocations: 458) +Completed 200 OK in 1154ms (Views: 1153.5ms | Allocations: 1453377) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 21:11:42 -0500 +Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 21:11:42 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 21:11:43 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 42.7ms | Allocations: 74575) +Completed 200 OK in 44ms (Views: 43.1ms | Allocations: 75031) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-16 21:11:43 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 46.5ms | Allocations: 74699) +Completed 200 OK in 47ms (Views: 46.7ms | Allocations: 74997) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-16 21:11:44 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 42.7ms | Allocations: 74679) +Completed 200 OK in 44ms (Views: 43.0ms | Allocations: 74976) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-16 21:11:45 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 79.5ms | Allocations: 74726) +Completed 200 OK in 80ms (Views: 79.8ms | Allocations: 75023) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-16 21:11:45 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 39.4ms | Allocations: 74708) +Completed 200 OK in 40ms (Views: 39.7ms | Allocations: 75005) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-16 21:11:46 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610849506.772907 ********************************************* + Rendered inline template (Duration: 269.2ms | Allocations: 78912) +Completed 200 OK in 270ms (Views: 269.9ms | Allocations: 79214) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2021-01-16 21:11:47 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 2.3ms | Allocations: 1797) +Completed 200 OK in 56ms (Views: 54.9ms | Allocations: 74930) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2021-01-16 21:11:48 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (Duration: 60.3ms | Allocations: 75182) +Completed 200 OK in 61ms (Views: 60.6ms | Allocations: 75487) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-16 21:11:48 -0500 +Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2021-01-16 21:11:48 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"9"} + Rendering inline template + Rendered inline template (Duration: 119.9ms | Allocations: 75900) +Completed 200 OK in 121ms (Views: 120.2ms | Allocations: 76205) +Started GET "/assets/factorial-102125a7e1b156e38a7f308a49fb6b300a5ea4e6aa4980068e4903fdbfdd443c.js" for 127.0.0.1 at 2021-01-16 21:11:48 -0500 +Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2021-01-16 21:11:49 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"10"} + Rendering inline template + Rendered inline template (Duration: 49.0ms | Allocations: 74772) +Completed 200 OK in 50ms (Views: 49.3ms | Allocations: 75069) +Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2021-01-16 21:11:52 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"11"} + Rendering inline template + Rendered inline template (Duration: 43.8ms | Allocations: 74752) +Completed 200 OK in 45ms (Views: 44.1ms | Allocations: 75049) +Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2021-01-16 21:11:55 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"12"} + Rendering inline template + Rendered inline template (Duration: 43.3ms | Allocations: 74823) +Completed 200 OK in 44ms (Views: 43.5ms | Allocations: 75120) +Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2021-01-16 21:11:56 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"13"} + Rendering inline template + Rendered inline template (Duration: 79.4ms | Allocations: 74834) +Completed 200 OK in 80ms (Views: 79.7ms | Allocations: 75131) +Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2021-01-16 21:11:57 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"14"} + Rendering inline template + Rendered inline template (Duration: 41.9ms | Allocations: 74712) +Completed 200 OK in 43ms (Views: 42.2ms | Allocations: 75009) +Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2021-01-16 21:11:57 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15"} + Rendering inline template + Rendered inline template (Duration: 42.3ms | Allocations: 74708) +Completed 200 OK in 43ms (Views: 42.6ms | Allocations: 75005) +Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2021-01-16 21:12:01 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"16"} + Rendering inline template + Rendered inline template (Duration: 41.8ms | Allocations: 74708) +Completed 200 OK in 43ms (Views: 42.1ms | Allocations: 75005) +Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2021-01-16 21:12:03 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"17"} + Rendering inline template + Rendered inline template (Duration: 41.1ms | Allocations: 74708) +Completed 200 OK in 42ms (Views: 41.3ms | Allocations: 75005) +Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2021-01-16 21:12:03 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"18"} + Rendering inline template + Rendered inline template (Duration: 45.6ms | Allocations: 74728) +Completed 200 OK in 46ms (Views: 45.8ms | Allocations: 75025) +Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2021-01-16 21:12:04 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"19"} + Rendering inline template + Rendered inline template (Duration: 46.2ms | Allocations: 74708) +Completed 200 OK in 47ms (Views: 46.5ms | Allocations: 75005) +Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2021-01-16 21:12:05 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"20"} + Rendering inline template + Rendered inline template (Duration: 40.4ms | Allocations: 74708) +Completed 200 OK in 41ms (Views: 40.7ms | Allocations: 75005) +Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2021-01-16 21:12:05 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"21"} + Rendering inline template + Rendered inline template (Duration: 41.7ms | Allocations: 74708) +Completed 200 OK in 43ms (Views: 42.0ms | Allocations: 75005) +Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2021-01-16 21:12:06 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"22"} + Rendering inline template + Rendered inline template (Duration: 43.2ms | Allocations: 74708) +Completed 200 OK in 44ms (Views: 43.5ms | Allocations: 75005) +Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2021-01-16 21:12:08 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"23"} + Rendering inline template + Rendered inline template (Duration: 44.3ms | Allocations: 74728) +Completed 200 OK in 45ms (Views: 44.6ms | Allocations: 75025) +Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2021-01-16 21:12:08 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"24"} + Rendering inline template + Rendered inline template (Duration: 41.1ms | Allocations: 74708) +Completed 200 OK in 42ms (Views: 41.4ms | Allocations: 75005) +Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2021-01-16 21:12:09 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"25"} + Rendering inline template + Rendered inline template (Duration: 42.9ms | Allocations: 74708) +Completed 200 OK in 44ms (Views: 43.2ms | Allocations: 75005) +Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2021-01-16 21:12:10 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"26"} + Rendering inline template + Rendered inline template (Duration: 42.9ms | Allocations: 74708) +Completed 200 OK in 44ms (Views: 43.2ms | Allocations: 75005) +Started GET "/hyper_spec_test/27" for 127.0.0.1 at 2021-01-16 21:12:10 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"27"} + Rendering inline template + Rendered inline template (Duration: 49.0ms | Allocations: 74708) +Completed 200 OK in 52ms (Views: 51.0ms | Allocations: 75005) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:24:40 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1980.8ms | Allocations: 1499894) +Completed 200 OK in 1985ms (Views: 1982.8ms | Allocations: 1501337) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:24:42 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:24:42 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:27:31 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1057.9ms | Allocations: 1451161) +Completed 200 OK in 1062ms (Views: 1059.6ms | Allocations: 1452604) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:27:32 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:27:32 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:28:16 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 955.4ms | Allocations: 1451161) +Completed 200 OK in 959ms (Views: 956.9ms | Allocations: 1452604) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:28:17 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:28:17 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:30:17 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 988.0ms | Allocations: 1451160) +Completed 200 OK in 992ms (Views: 989.7ms | Allocations: 1452603) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:30:18 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:30:18 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:32:21 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1209.4ms | Allocations: 1451159) +Completed 200 OK in 1216ms (Views: 1212.5ms | Allocations: 1453253) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:32:22 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:32:22 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:34:41 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1039.7ms | Allocations: 1451161) +Completed 200 OK in 1043ms (Views: 1041.2ms | Allocations: 1452604) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:34:42 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:34:42 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:41:57 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1044.0ms | Allocations: 1451161) +Completed 200 OK in 1047ms (Views: 1045.6ms | Allocations: 1452604) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:41:58 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:41:58 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:43:19 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1040.9ms | Allocations: 1451161) +Completed 200 OK in 1044ms (Views: 1042.3ms | Allocations: 1452604) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:43:20 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:43:20 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:43:50 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1025.7ms | Allocations: 1451161) +Completed 200 OK in 1029ms (Views: 1027.5ms | Allocations: 1452604) +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:43:52 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:43:52 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:44:15 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1029.8ms | Allocations: 1451160) +Completed 200 OK in 1033ms (Views: 1031.2ms | Allocations: 1452603) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:44:16 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:44:16 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:46:17 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1036.8ms | Allocations: 1451160) +Completed 200 OK in 1040ms (Views: 1038.2ms | Allocations: 1452603) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:46:18 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:46:18 -0500 +Started GET "/test" for 127.0.0.1 at 2021-01-17 17:48:03 -0500 +Processing by TestController#show as HTML + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 0.9ms | Allocations: 458) +Completed 200 OK in 1052ms (Views: 1051.3ms | Allocations: 1451682) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:48:04 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:48:04 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:48:04 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 43.0ms | Allocations: 73936) +Completed 200 OK in 44ms (Views: 43.4ms | Allocations: 74392) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-17 17:48:05 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 43.7ms | Allocations: 74059) +Completed 200 OK in 45ms (Views: 44.0ms | Allocations: 74357) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-17 17:48:06 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 41.6ms | Allocations: 74039) +Completed 200 OK in 42ms (Views: 41.9ms | Allocations: 74336) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-17 17:48:07 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 47.8ms | Allocations: 74080) +Completed 200 OK in 49ms (Views: 48.1ms | Allocations: 74377) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-17 17:48:07 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 79.6ms | Allocations: 74071) +Completed 200 OK in 80ms (Views: 79.9ms | Allocations: 74368) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-17 17:48:08 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template +************************** React Server Context Initialized SayHello 1610923688.726614 ********************************************* + Rendered inline template (Duration: 406.3ms | Allocations: 113187) +Completed 200 OK in 407ms (Views: 406.6ms | Allocations: 113489) +Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2021-01-17 17:48:09 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"7"} + Rendering inline template within layouts/application + Rendered inline template within layouts/application (Duration: 1.7ms | Allocations: 1773) +Completed 200 OK in 69ms (Views: 68.2ms | Allocations: 74290) +Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2021-01-17 17:48:09 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"8"} + Rendering inline template + Rendered inline template (Duration: 58.5ms | Allocations: 74542) +Completed 200 OK in 59ms (Views: 58.7ms | Allocations: 74847) +Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-17 17:48:10 -0500 +Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2021-01-17 17:48:10 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"9"} + Rendering inline template + Rendered inline template (Duration: 65.3ms | Allocations: 75250) +Completed 200 OK in 66ms (Views: 65.6ms | Allocations: 75555) +Started GET "/assets/factorial-9c6c386c7e12a3c7e87ac624641651a74839b568d510017fc068622d3fb09d4f.js" for 127.0.0.1 at 2021-01-17 17:48:10 -0500 +Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2021-01-17 17:48:11 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"10"} + Rendering inline template + Rendered inline template (Duration: 41.0ms | Allocations: 74134) +Completed 200 OK in 42ms (Views: 41.3ms | Allocations: 74433) +Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2021-01-17 17:48:14 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"11"} + Rendering inline template + Rendered inline template (Duration: 40.0ms | Allocations: 74112) +Completed 200 OK in 41ms (Views: 40.3ms | Allocations: 74409) +Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2021-01-17 17:48:17 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"12"} + Rendering inline template + Rendered inline template (Duration: 56.7ms | Allocations: 74183) +Completed 200 OK in 57ms (Views: 56.9ms | Allocations: 74480) +Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2021-01-17 17:48:18 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"13"} + Rendering inline template + Rendered inline template (Duration: 71.1ms | Allocations: 74182) +Completed 200 OK in 72ms (Views: 71.4ms | Allocations: 74479) +Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2021-01-17 17:48:19 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"14"} + Rendering inline template + Rendered inline template (Duration: 41.4ms | Allocations: 74103) +Completed 200 OK in 42ms (Views: 41.7ms | Allocations: 74402) +Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2021-01-17 17:48:19 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"15"} + Rendering inline template + Rendered inline template (Duration: 43.1ms | Allocations: 74068) +Completed 200 OK in 44ms (Views: 43.4ms | Allocations: 74365) +Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2021-01-17 17:48:23 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"16"} + Rendering inline template + Rendered inline template (Duration: 40.9ms | Allocations: 74069) +Completed 200 OK in 42ms (Views: 41.2ms | Allocations: 74366) +Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2021-01-17 17:48:25 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"17"} + Rendering inline template + Rendered inline template (Duration: 38.7ms | Allocations: 74068) +Completed 200 OK in 40ms (Views: 39.0ms | Allocations: 74365) +Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2021-01-17 17:48:25 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"18"} + Rendering inline template + Rendered inline template (Duration: 73.8ms | Allocations: 74080) +Completed 200 OK in 75ms (Views: 74.1ms | Allocations: 74377) +Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2021-01-17 17:48:26 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"19"} + Rendering inline template + Rendered inline template (Duration: 41.2ms | Allocations: 74073) +Completed 200 OK in 42ms (Views: 41.5ms | Allocations: 74370) +Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2021-01-17 17:48:27 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"20"} + Rendering inline template + Rendered inline template (Duration: 41.0ms | Allocations: 74068) +Completed 200 OK in 42ms (Views: 41.3ms | Allocations: 74365) +Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2021-01-17 17:48:27 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"21"} + Rendering inline template + Rendered inline template (Duration: 41.3ms | Allocations: 74068) +Completed 200 OK in 42ms (Views: 41.7ms | Allocations: 74365) +Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2021-01-17 17:48:28 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"22"} + Rendering inline template + Rendered inline template (Duration: 41.5ms | Allocations: 74068) +Completed 200 OK in 42ms (Views: 41.8ms | Allocations: 74365) +Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2021-01-17 17:48:30 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"23"} + Rendering inline template + Rendered inline template (Duration: 76.3ms | Allocations: 74078) +Completed 200 OK in 77ms (Views: 76.7ms | Allocations: 74375) +Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2021-01-17 17:48:30 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"24"} + Rendering inline template + Rendered inline template (Duration: 43.3ms | Allocations: 74073) +Completed 200 OK in 44ms (Views: 43.6ms | Allocations: 74370) +Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2021-01-17 17:48:31 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"25"} + Rendering inline template + Rendered inline template (Duration: 41.8ms | Allocations: 74068) +Completed 200 OK in 43ms (Views: 42.2ms | Allocations: 74365) +Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2021-01-17 17:48:32 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"26"} + Rendering inline template + Rendered inline template (Duration: 43.4ms | Allocations: 74068) +Completed 200 OK in 44ms (Views: 43.8ms | Allocations: 74365) +Started GET "/hyper_spec_test/27" for 127.0.0.1 at 2021-01-17 17:48:32 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"27"} + Rendering inline template + Rendered inline template (Duration: 39.5ms | Allocations: 74068) +Completed 200 OK in 40ms (Views: 39.8ms | Allocations: 74365) +Started GET "/hyper_spec_test/28" for 127.0.0.1 at 2021-01-17 17:48:33 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"28"} + Rendering inline template + Rendered inline template (Duration: 40.9ms | Allocations: 74068) +Completed 200 OK in 42ms (Views: 41.2ms | Allocations: 74365) +Started GET "/hyper_spec_test/29" for 127.0.0.1 at 2021-01-17 17:48:34 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"29"} + Rendering inline template + Rendered inline template (Duration: 47.9ms | Allocations: 74103) +Completed 200 OK in 49ms (Views: 48.2ms | Allocations: 74402) +Started GET "/hyper_spec_test/30" for 127.0.0.1 at 2021-01-17 17:48:34 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"30"} + Rendering inline template + Rendered inline template (Duration: 40.9ms | Allocations: 74068) +Completed 200 OK in 42ms (Views: 41.2ms | Allocations: 74365) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:51:36 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1045.4ms | Allocations: 1451161) +Completed 200 OK in 1049ms (Views: 1047.2ms | Allocations: 1452604) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:51:37 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:51:37 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 21:48:06 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1269.2ms | Allocations: 1451159) +Completed 200 OK in 1274ms (Views: 1271.8ms | Allocations: 1453000) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 21:48:08 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 21:48:08 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 21:52:32 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1259.7ms | Allocations: 1451159) +Completed 200 OK in 1264ms (Views: 1261.6ms | Allocations: 1453000) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 21:52:34 -0500 +Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 21:52:34 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 13:53:45 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1231.7ms | Allocations: 1347448) +Completed 500 Internal Server Error in 1236ms (Allocations: 1348872) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 13:58:40 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 8229.0ms | Allocations: 11862157) +Completed 200 OK in 8232ms (Views: 8230.3ms | Allocations: 11863599) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 13:58:49 -0500 +Started GET "/assets/application-2d1f95aaedc98892d891a16356fc6b5bab91d1f475f84e3d6c698e183247acc6.js" for 127.0.0.1 at 2021-01-20 13:58:49 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:02:36 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 2929.7ms | Allocations: 2138738) +Completed 200 OK in 2933ms (Views: 2931.5ms | Allocations: 2140181) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:02:39 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:02:39 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:04:35 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1062.7ms | Allocations: 1535321) +Completed 200 OK in 1067ms (Views: 1065.2ms | Allocations: 1536764) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:04:36 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:04:36 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 14:05:04 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 14:10:08 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 14:10:28 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:11:09 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1406.3ms | Allocations: 1535320) +Completed 200 OK in 1410ms (Views: 1408.1ms | Allocations: 1536763) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:11:10 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:11:10 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 14:11:11 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:14:11 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1174.6ms | Allocations: 1535320) +Completed 200 OK in 1178ms (Views: 1176.3ms | Allocations: 1536763) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:14:12 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:14:12 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 14:14:13 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:19:47 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1299.1ms | Allocations: 1535321) +Completed 200 OK in 1304ms (Views: 1301.3ms | Allocations: 1536764) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:19:48 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:19:48 -0500 +Started GET "/hyper_spec_test/404.html" for 127.0.0.1 at 2021-01-20 14:19:49 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"404"} +Completed 500 Internal Server Error in 5ms (Allocations: 624) +Started GET "/hyper_spec_test/404.html" for 127.0.0.1 at 2021-01-20 14:19:57 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"404"} +Completed 500 Internal Server Error in 1ms (Allocations: 619) +Started GET "/hyper_spec_test/404.html" for 127.0.0.1 at 2021-01-20 14:21:12 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"404"} +Completed 500 Internal Server Error in 1ms (Allocations: 619) +Started GET "/hyper_spec_test/404.htmlz" for 127.0.0.1 at 2021-01-20 14:21:40 -0500 +Processing by HyperSpecTestController#test as + Parameters: {"id"=>"404"} +Completed 500 Internal Server Error in 1ms (Allocations: 620) +Started GET "/hyper_spec_test/404.html" for 127.0.0.1 at 2021-01-20 14:22:27 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"404"} +Completed 500 Internal Server Error in 1ms (Allocations: 619) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:24:58 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1265.0ms | Allocations: 1535321) +Completed 200 OK in 1270ms (Views: 1268.2ms | Allocations: 1536764) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:25:00 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:25:00 -0500 +Started GET "/hyper_spec_test/ping" for 127.0.0.1 at 2021-01-20 14:26:01 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"ping"} +Completed 204 No Content in 0ms (Allocations: 51) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 14:26:01 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 119.8ms | Allocations: 97338) +Completed 200 OK in 121ms (Views: 120.1ms | Allocations: 97637) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:27:49 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1173.0ms | Allocations: 1535320) +Completed 200 OK in 1177ms (Views: 1174.8ms | Allocations: 1536763) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:27:50 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:27:51 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:30:33 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1146.7ms | Allocations: 1535320) +Completed 200 OK in 1150ms (Views: 1148.4ms | Allocations: 1536763) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:30:34 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:30:34 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:35:16 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1287.0ms | Allocations: 1535320) +Completed 200 OK in 1290ms (Views: 1288.5ms | Allocations: 1536763) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:35:17 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:35:17 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:19:08 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1366.4ms | Allocations: 1535322) +Completed 200 OK in 1372ms (Views: 1368.7ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:19:09 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:19:09 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 15:19:10 -0500 +Processing by TestController#http as JS +Completed 500 Internal Server Error in 109ms (Allocations: 56588) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:20:06 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1156.9ms | Allocations: 1535320) +Completed 200 OK in 1160ms (Views: 1158.4ms | Allocations: 1536763) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:20:07 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:20:07 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 15:20:08 -0500 +Processing by TestController#http as JS +Completed 500 Internal Server Error in 2ms (Allocations: 1227) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:22:16 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1091.2ms | Allocations: 1535321) +Completed 200 OK in 1094ms (Views: 1092.5ms | Allocations: 1536764) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:22:17 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:22:17 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 15:22:18 -0500 +Processing by TestController#http as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 467) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:30:34 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1339.3ms | Allocations: 1535322) +Completed 200 OK in 1343ms (Views: 1341.0ms | Allocations: 1536765) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:30:36 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:30:36 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:31:18 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1310.8ms | Allocations: 1535321) +Completed 200 OK in 1314ms (Views: 1312.2ms | Allocations: 1536764) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:31:19 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:31:19 -0500 +Started POST "/http" for 127.0.0.1 at 2021-01-20 15:31:20 -0500 +Processing by TestController#post as JS + Parameters: {"lol"=>"wut"} +Completed 500 Internal Server Error in 33693ms (Allocations: 60217) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:32:34 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1307.1ms | Allocations: 1535321) +Completed 200 OK in 1310ms (Views: 1308.3ms | Allocations: 1536764) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:32:36 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:32:36 -0500 +Started POST "/http" for 127.0.0.1 at 2021-01-20 15:32:37 -0500 +Processing by TestController#post as JS + Parameters: {"lol"=>"wut"} +No template found for TestController#post, rendering head :no_content +Completed 204 No Content in 1ms (Allocations: 624) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:33:09 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1336.0ms | Allocations: 1535321) +Completed 200 OK in 1340ms (Views: 1337.6ms | Allocations: 1536764) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:33:10 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:33:10 -0500 +Started POST "/http" for 127.0.0.1 at 2021-01-20 15:33:11 -0500 +Processing by TestController#post as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 1.2ms | Allocations: 471) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:35:21 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1435.7ms | Allocations: 1535323) +Completed 200 OK in 1439ms (Views: 1437.1ms | Allocations: 1536766) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:35:23 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:35:23 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 15:35:24 -0500 +Processing by TestController#get as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 467) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:36:41 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1264.8ms | Allocations: 1535322) +Completed 200 OK in 1268ms (Views: 1266.2ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:36:43 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:36:43 -0500 +Started PUT "/http" for 127.0.0.1 at 2021-01-20 15:36:43 -0500 +Processing by TestController#post as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 471) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:38:31 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1297.6ms | Allocations: 1535322) +Completed 200 OK in 1301ms (Views: 1299.1ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:38:32 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:38:32 -0500 +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 15:38:33 -0500 +Processing by TestController#get as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 459) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:38:50 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1287.4ms | Allocations: 1535322) +Completed 200 OK in 1291ms (Views: 1288.8ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:38:51 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:38:51 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 15:38:52 -0500 +Processing by TestController#get as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 15:38:52 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 56.0ms | Allocations: 97333) +Completed 200 OK in 57ms (Views: 56.3ms | Allocations: 97631) +Started POST "/http" for 127.0.0.1 at 2021-01-20 15:38:53 -0500 +Processing by TestController#post as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 15:38:53 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 58.6ms | Allocations: 97327) +Completed 200 OK in 59ms (Views: 58.9ms | Allocations: 97624) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 15:38:54 -0500 +Processing by TestController#post as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 15:38:54 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 55.6ms | Allocations: 97327) +Completed 200 OK in 56ms (Views: 55.9ms | Allocations: 97624) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 15:38:54 -0500 +Processing by TestController#get as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:42:10 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1290.0ms | Allocations: 1535322) +Completed 200 OK in 1295ms (Views: 1292.0ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:42:11 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:42:11 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 15:42:12 -0500 +Processing by TestController#get as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 15:42:12 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 54.5ms | Allocations: 97333) +Completed 200 OK in 55ms (Views: 54.8ms | Allocations: 97631) +Started POST "/http" for 127.0.0.1 at 2021-01-20 15:42:13 -0500 +Processing by TestController#post as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 15:42:13 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 56.5ms | Allocations: 97328) +Completed 200 OK in 57ms (Views: 56.8ms | Allocations: 97625) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 15:42:13 -0500 +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 15:42:13 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 58.0ms | Allocations: 97327) +Completed 200 OK in 59ms (Views: 58.2ms | Allocations: 97624) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 15:42:14 -0500 +Processing by TestController#post as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 15:42:14 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 57.2ms | Allocations: 97332) +Completed 200 OK in 58ms (Views: 57.4ms | Allocations: 97629) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 15:42:15 -0500 +Processing by TestController#get as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:44:04 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1273.0ms | Allocations: 1535322) +Completed 200 OK in 1276ms (Views: 1274.5ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:44:05 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:44:05 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 15:44:06 -0500 +Processing by TestController#get as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 15:44:06 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 59.2ms | Allocations: 97333) +Completed 200 OK in 60ms (Views: 59.5ms | Allocations: 97631) +Started POST "/http" for 127.0.0.1 at 2021-01-20 15:44:07 -0500 +Processing by TestController#post as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 15:44:07 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 58.8ms | Allocations: 97328) +Completed 200 OK in 60ms (Views: 59.1ms | Allocations: 97625) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 15:44:07 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 298732ms (Views: 2.4ms | Allocations: 181564) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 15:49:06 -0500 +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 15:49:07 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:49:18 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1389.9ms | Allocations: 1535323) +Completed 200 OK in 1394ms (Views: 1392.0ms | Allocations: 1536766) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:49:20 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:49:20 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 15:49:20 -0500 +Processing by TestController#get as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 15:49:21 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 62.1ms | Allocations: 97333) +Completed 200 OK in 63ms (Views: 62.4ms | Allocations: 97631) +Started POST "/http" for 127.0.0.1 at 2021-01-20 15:49:21 -0500 +Processing by TestController#post as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 15:49:22 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 56.4ms | Allocations: 97328) +Completed 200 OK in 57ms (Views: 56.7ms | Allocations: 97625) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 15:49:22 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 15:49:22 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 58.3ms | Allocations: 97327) +Completed 200 OK in 59ms (Views: 58.5ms | Allocations: 97624) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 15:49:23 -0500 +Processing by TestController#post as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 15:49:23 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 58.1ms | Allocations: 97332) +Completed 200 OK in 59ms (Views: 58.4ms | Allocations: 97629) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 15:49:23 -0500 +Processing by TestController#get as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:50:28 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1203.7ms | Allocations: 1535322) +Completed 200 OK in 1207ms (Views: 1205.0ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:50:29 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:50:29 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 15:50:30 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 15:50:30 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 61.0ms | Allocations: 97334) +Completed 200 OK in 62ms (Views: 61.3ms | Allocations: 97632) +Started POST "/http" for 127.0.0.1 at 2021-01-20 15:50:31 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 15:50:31 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 57.7ms | Allocations: 97328) +Completed 200 OK in 59ms (Views: 58.0ms | Allocations: 97625) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 15:50:31 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 15:50:31 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 58.2ms | Allocations: 97327) +Completed 200 OK in 59ms (Views: 58.6ms | Allocations: 97624) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 15:50:32 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 15:50:32 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 92.1ms | Allocations: 97332) +Completed 200 OK in 93ms (Views: 92.5ms | Allocations: 97629) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 15:50:33 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:58:42 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1136.1ms | Allocations: 1535322) +Completed 200 OK in 1139ms (Views: 1137.3ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:58:43 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:58:43 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:02:13 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1254.1ms | Allocations: 1535330) +Completed 200 OK in 1258ms (Views: 1256.1ms | Allocations: 1536780) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:02:14 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:02:14 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:15:49 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1146.1ms | Allocations: 1535329) +Completed 200 OK in 1150ms (Views: 1147.5ms | Allocations: 1536779) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:15:50 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:15:50 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:27:05 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1308.4ms | Allocations: 1535322) +Completed 200 OK in 1312ms (Views: 1310.1ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:27:06 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:27:06 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 16:27:07 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 4ms (Views: 3.5ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:27:07 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 58.6ms | Allocations: 97334) +Completed 200 OK in 59ms (Views: 58.9ms | Allocations: 97632) +Started POST "/http" for 127.0.0.1 at 2021-01-20 16:27:08 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:27:08 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 56.1ms | Allocations: 97328) +Completed 200 OK in 57ms (Views: 56.4ms | Allocations: 97625) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:27:09 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:27:09 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 56.4ms | Allocations: 97327) +Completed 200 OK in 57ms (Views: 56.8ms | Allocations: 97624) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:27:09 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:27:09 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 59.8ms | Allocations: 97327) +Completed 200 OK in 61ms (Views: 60.1ms | Allocations: 97624) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:27:10 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:27:10 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 98.8ms | Allocations: 97344) +Completed 200 OK in 100ms (Views: 99.1ms | Allocations: 97649) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:30:44 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1315.4ms | Allocations: 1535322) +Completed 200 OK in 1319ms (Views: 1317.1ms | Allocations: 1536765) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:30:45 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:30:45 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 16:30:46 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 4ms (Views: 3.4ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:30:46 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 59.4ms | Allocations: 97333) +Completed 200 OK in 60ms (Views: 59.7ms | Allocations: 97631) +Started POST "/http" for 127.0.0.1 at 2021-01-20 16:30:47 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:30:47 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 59.5ms | Allocations: 97328) +Completed 200 OK in 60ms (Views: 59.8ms | Allocations: 97625) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:30:48 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:30:48 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 59.6ms | Allocations: 97327) +Completed 200 OK in 60ms (Views: 59.9ms | Allocations: 97624) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:30:48 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:30:49 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 99.9ms | Allocations: 97333) +Completed 200 OK in 101ms (Views: 100.2ms | Allocations: 97630) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:30:49 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:30:49 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 55.3ms | Allocations: 97341) +Completed 200 OK in 56ms (Views: 55.6ms | Allocations: 97645) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:32:01 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1048.9ms | Allocations: 1535321) +Completed 200 OK in 1052ms (Views: 1050.2ms | Allocations: 1536764) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:32:02 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:32:02 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 16:32:03 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:32:03 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 83.6ms | Allocations: 97333) +Completed 200 OK in 84ms (Views: 83.8ms | Allocations: 97631) +Started POST "/http" for 127.0.0.1 at 2021-01-20 16:32:04 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:32:04 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 103.8ms | Allocations: 97333) +Completed 200 OK in 105ms (Views: 104.0ms | Allocations: 97630) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:32:04 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:32:05 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 136.3ms | Allocations: 97331) +Completed 200 OK in 137ms (Views: 136.6ms | Allocations: 97628) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:32:05 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:32:05 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 56.9ms | Allocations: 97332) +Completed 200 OK in 58ms (Views: 57.1ms | Allocations: 97629) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:32:06 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:32:06 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 56.3ms | Allocations: 97336) +Completed 200 OK in 57ms (Views: 56.6ms | Allocations: 97640) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:33:11 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1232.1ms | Allocations: 1535322) +Completed 200 OK in 1236ms (Views: 1233.6ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:33:12 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:33:12 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 16:33:13 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:33:13 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 58.8ms | Allocations: 97333) +Completed 200 OK in 60ms (Views: 59.2ms | Allocations: 97632) +Started POST "/http" for 127.0.0.1 at 2021-01-20 16:33:14 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:33:14 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 57.0ms | Allocations: 97328) +Completed 200 OK in 58ms (Views: 57.3ms | Allocations: 97625) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:33:14 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:33:15 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 57.5ms | Allocations: 97327) +Completed 200 OK in 58ms (Views: 57.9ms | Allocations: 97624) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:33:15 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:33:15 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 96.7ms | Allocations: 97334) +Completed 200 OK in 98ms (Views: 97.0ms | Allocations: 97631) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:33:16 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:33:16 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 55.5ms | Allocations: 97341) +Completed 200 OK in 56ms (Views: 55.8ms | Allocations: 97645) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:36:10 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1203.5ms | Allocations: 1535322) +Completed 200 OK in 1207ms (Views: 1205.2ms | Allocations: 1536765) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:36:11 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:36:11 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 16:36:12 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 2ms (Views: 2.0ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:36:12 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 55.1ms | Allocations: 97334) +Completed 200 OK in 56ms (Views: 55.4ms | Allocations: 97634) +Started POST "/http" for 127.0.0.1 at 2021-01-20 16:36:13 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:36:13 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 59.9ms | Allocations: 97328) +Completed 200 OK in 61ms (Views: 60.2ms | Allocations: 97625) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:36:13 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:36:14 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 82.4ms | Allocations: 97331) +Completed 200 OK in 83ms (Views: 82.7ms | Allocations: 97628) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:36:14 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:36:14 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 56.2ms | Allocations: 97332) +Completed 200 OK in 57ms (Views: 56.5ms | Allocations: 97629) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:36:15 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:36:15 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 58.8ms | Allocations: 97336) +Completed 200 OK in 60ms (Views: 59.1ms | Allocations: 97640) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:37:30 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1144.7ms | Allocations: 1535322) +Completed 200 OK in 1149ms (Views: 1146.5ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:37:31 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:37:31 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 16:37:32 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 4ms (Views: 3.9ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:37:32 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 71.5ms | Allocations: 97334) +Completed 200 OK in 72ms (Views: 71.8ms | Allocations: 97632) +Started POST "/http" for 127.0.0.1 at 2021-01-20 16:37:33 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:37:33 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 57.3ms | Allocations: 97332) +Completed 200 OK in 58ms (Views: 57.6ms | Allocations: 97629) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:37:34 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:37:34 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 56.6ms | Allocations: 97327) +Completed 200 OK in 58ms (Views: 56.9ms | Allocations: 97624) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:37:34 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:37:34 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 59.6ms | Allocations: 97332) +Completed 200 OK in 60ms (Views: 59.9ms | Allocations: 97629) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:37:35 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:37:35 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 55.6ms | Allocations: 97336) +Completed 200 OK in 56ms (Views: 55.9ms | Allocations: 97640) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:40:14 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1380.3ms | Allocations: 1535322) +Completed 200 OK in 1384ms (Views: 1382.1ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:40:15 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:40:15 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 16:40:16 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:40:16 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 58.2ms | Allocations: 97333) +Completed 200 OK in 59ms (Views: 58.4ms | Allocations: 97631) +Started POST "/http" for 127.0.0.1 at 2021-01-20 16:40:17 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:40:17 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 59.0ms | Allocations: 97328) +Completed 200 OK in 60ms (Views: 59.3ms | Allocations: 97625) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:40:17 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:40:18 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 57.8ms | Allocations: 97327) +Completed 200 OK in 59ms (Views: 58.1ms | Allocations: 97624) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:40:18 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:40:18 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 99.1ms | Allocations: 97333) +Completed 200 OK in 100ms (Views: 99.4ms | Allocations: 97630) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:40:19 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:40:19 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 53.5ms | Allocations: 97341) +Completed 200 OK in 54ms (Views: 53.8ms | Allocations: 97645) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:45:04 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1264.8ms | Allocations: 1535322) +Completed 200 OK in 1269ms (Views: 1266.8ms | Allocations: 1536765) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:45:05 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:45:05 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 16:45:06 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:45:06 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 59.6ms | Allocations: 97333) +Completed 200 OK in 60ms (Views: 59.9ms | Allocations: 97631) +Started POST "/http" for 127.0.0.1 at 2021-01-20 16:45:07 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:45:07 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 58.5ms | Allocations: 97328) +Completed 200 OK in 59ms (Views: 58.8ms | Allocations: 97625) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:45:08 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:45:08 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 63.9ms | Allocations: 97327) +Completed 200 OK in 65ms (Views: 64.2ms | Allocations: 97624) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:45:08 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:45:09 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 99.5ms | Allocations: 97333) +Completed 200 OK in 100ms (Views: 99.7ms | Allocations: 97630) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:45:09 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:45:09 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 53.8ms | Allocations: 97341) +Completed 200 OK in 55ms (Views: 54.1ms | Allocations: 97645) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:47:45 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1282.4ms | Allocations: 1535322) +Completed 200 OK in 1286ms (Views: 1284.1ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:47:47 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:47:47 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 16:47:47 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 4ms (Views: 3.6ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:47:48 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 61.4ms | Allocations: 97333) +Completed 200 OK in 62ms (Views: 61.7ms | Allocations: 97631) +Started POST "/http" for 127.0.0.1 at 2021-01-20 16:47:48 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:47:49 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 56.8ms | Allocations: 97328) +Completed 200 OK in 58ms (Views: 57.1ms | Allocations: 97625) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:47:49 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:47:49 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 60.9ms | Allocations: 97327) +Completed 200 OK in 62ms (Views: 61.2ms | Allocations: 97624) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:47:50 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:47:50 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 95.5ms | Allocations: 97334) +Completed 200 OK in 96ms (Views: 95.8ms | Allocations: 97631) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:47:50 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:47:51 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 54.1ms | Allocations: 97340) +Completed 200 OK in 55ms (Views: 54.4ms | Allocations: 97644) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:48:47 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1226.2ms | Allocations: 1535322) +Completed 200 OK in 1229ms (Views: 1227.6ms | Allocations: 1536765) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:48:49 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:48:49 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 16:48:49 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:48:50 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 55.0ms | Allocations: 97333) +Completed 200 OK in 56ms (Views: 55.3ms | Allocations: 97631) +Started POST "/http" for 127.0.0.1 at 2021-01-20 16:48:50 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:48:50 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 56.4ms | Allocations: 97328) +Completed 200 OK in 57ms (Views: 56.7ms | Allocations: 97625) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:48:51 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:48:51 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 58.4ms | Allocations: 97327) +Completed 200 OK in 59ms (Views: 58.7ms | Allocations: 97624) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:48:52 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:48:52 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 99.3ms | Allocations: 97333) +Completed 200 OK in 100ms (Views: 99.6ms | Allocations: 97630) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:48:52 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:48:53 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 55.8ms | Allocations: 97341) +Completed 200 OK in 57ms (Views: 56.1ms | Allocations: 97645) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:55:15 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1119.5ms | Allocations: 1535323) +Completed 200 OK in 1123ms (Views: 1121.0ms | Allocations: 1536766) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:55:16 -0500 +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:55:16 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 16:55:17 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:55:17 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 57.6ms | Allocations: 97333) +Completed 200 OK in 58ms (Views: 57.8ms | Allocations: 97631) +Started POST "/http" for 127.0.0.1 at 2021-01-20 16:55:17 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:55:18 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 95.4ms | Allocations: 97330) +Completed 200 OK in 97ms (Views: 95.9ms | Allocations: 97627) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:55:18 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:55:18 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 54.5ms | Allocations: 97332) +Completed 200 OK in 55ms (Views: 54.9ms | Allocations: 97629) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:55:19 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:55:19 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 55.7ms | Allocations: 97327) +Completed 200 OK in 57ms (Views: 56.0ms | Allocations: 97624) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:55:19 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:55:20 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 55.7ms | Allocations: 97336) +Completed 200 OK in 57ms (Views: 56.0ms | Allocations: 97640) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:56:06 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1029.9ms | Allocations: 1535321) +Completed 200 OK in 1033ms (Views: 1031.2ms | Allocations: 1536764) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:56:07 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:56:07 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 16:56:08 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:56:08 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 86.8ms | Allocations: 97333) +Completed 200 OK in 88ms (Views: 87.1ms | Allocations: 97631) +Started POST "/http" for 127.0.0.1 at 2021-01-20 16:56:09 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:56:09 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 53.2ms | Allocations: 97333) +Completed 200 OK in 54ms (Views: 53.5ms | Allocations: 97630) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:56:10 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:56:10 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 104.3ms | Allocations: 97327) +Completed 200 OK in 105ms (Views: 104.6ms | Allocations: 97624) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:56:10 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:56:10 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 138.4ms | Allocations: 97331) +Completed 200 OK in 139ms (Views: 138.7ms | Allocations: 97629) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:56:11 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:56:11 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 55.1ms | Allocations: 97341) +Completed 200 OK in 56ms (Views: 55.3ms | Allocations: 97645) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 17:02:52 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 1188.0ms | Allocations: 1535321) +Completed 200 OK in 1191ms (Views: 1189.4ms | Allocations: 1536764) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 17:02:53 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 17:02:53 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 17:02:54 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 17:02:55 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 56.0ms | Allocations: 97333) +Completed 200 OK in 57ms (Views: 56.3ms | Allocations: 97631) +Started POST "/http" for 127.0.0.1 at 2021-01-20 17:02:55 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 17:02:55 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 61.7ms | Allocations: 97328) +Completed 200 OK in 63ms (Views: 62.0ms | Allocations: 97625) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 17:02:56 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 17:02:56 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 99.2ms | Allocations: 97331) +Completed 200 OK in 100ms (Views: 99.5ms | Allocations: 97628) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 17:02:56 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 17:02:57 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 52.5ms | Allocations: 97333) +Completed 200 OK in 53ms (Views: 52.8ms | Allocations: 97630) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 17:02:57 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 17:02:57 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 57.2ms | Allocations: 97336) +Completed 200 OK in 58ms (Views: 57.5ms | Allocations: 97640) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 17:12:45 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"1"} + Rendering inline template + Rendered inline template (Duration: 3231.7ms | Allocations: 1535323) +Completed 200 OK in 3242ms (Views: 3236.3ms | Allocations: 1536766) +Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 17:12:49 -0500 +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 17:12:49 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 17:12:51 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 5ms (Views: 5.1ms | Allocations: 467) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 17:12:52 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"2"} + Rendering inline template + Rendered inline template (Duration: 332.4ms | Allocations: 97378) +Completed 200 OK in 335ms (Views: 333.4ms | Allocations: 97678) +Started POST "/http" for 127.0.0.1 at 2021-01-20 17:12:54 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.1ms | Allocations: 1) +Completed 200 OK in 2ms (Views: 1.8ms | Allocations: 144) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 17:12:54 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"3"} + Rendering inline template + Rendered inline template (Duration: 607.5ms | Allocations: 97329) +Completed 200 OK in 612ms (Views: 608.8ms | Allocations: 97626) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 17:12:55 -0500 +Processing by TestController#post_file as JS + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 2ms (Views: 1.2ms | Allocations: 148) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 17:12:56 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"4"} + Rendering inline template + Rendered inline template (Duration: 683.6ms | Allocations: 97330) +Completed 200 OK in 688ms (Views: 685.0ms | Allocations: 97627) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 17:12:58 -0500 +Processing by TestController#post_put as JS + Parameters: {"lol"=>"wut"} + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 2ms (Views: 1.0ms | Allocations: 144) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 17:12:58 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"5"} + Rendering inline template + Rendered inline template (Duration: 348.3ms | Allocations: 97333) +Completed 200 OK in 351ms (Views: 349.6ms | Allocations: 97630) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 17:12:59 -0500 +Processing by TestController#get_delete as JS + Rendering text template + Rendered text template (Duration: 0.0ms | Allocations: 1) +Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 132) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 17:13:00 -0500 +Processing by HyperSpecTestController#test as HTML + Parameters: {"id"=>"6"} + Rendering inline template + Rendered inline template (Duration: 399.4ms | Allocations: 97336) +Completed 200 OK in 403ms (Views: 400.7ms | Allocations: 97641) diff --git a/spec/test_app/public/404.html b/spec/test_app/public/404.html new file mode 100644 index 00000000..b612547f --- /dev/null +++ b/spec/test_app/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +
+
+

The page you were looking for doesn't exist.

+

You may have mistyped the address or the page may have moved.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/spec/test_app/public/422.html b/spec/test_app/public/422.html new file mode 100644 index 00000000..a21f82b3 --- /dev/null +++ b/spec/test_app/public/422.html @@ -0,0 +1,67 @@ + + + + The change you wanted was rejected (422) + + + + + + +
+
+

The change you wanted was rejected.

+

Maybe you tried to change something you didn't have access to.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/spec/test_app/public/500.html b/spec/test_app/public/500.html new file mode 100644 index 00000000..061abc58 --- /dev/null +++ b/spec/test_app/public/500.html @@ -0,0 +1,66 @@ + + + + We're sorry, but something went wrong (500) + + + + + + +
+
+

We're sorry, but something went wrong.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/spec/test_app/public/favicon.ico b/spec/test_app/public/favicon.ico new file mode 100644 index 00000000..e69de29b diff --git a/spec/test_app/spec/assets/javascripts/factorial.rb b/spec/test_app/spec/assets/javascripts/factorial.rb new file mode 100644 index 00000000..ea09551f --- /dev/null +++ b/spec/test_app/spec/assets/javascripts/factorial.rb @@ -0,0 +1,4 @@ +require 'application' +def factorial(n) + n==1 ? 1 : n * factorial(n-1) +end diff --git a/spec/test_app/spec/assets/stylesheets/test.css b/spec/test_app/spec/assets/stylesheets/test.css new file mode 100644 index 00000000..9957c3a8 --- /dev/null +++ b/spec/test_app/spec/assets/stylesheets/test.css @@ -0,0 +1,4 @@ +.application-style { + border-style:solid; + } + From b6cc5397aff3cf8fe56dbb3995022735e2606e9c Mon Sep 17 00:00:00 2001 From: catmando Date: Wed, 20 Jan 2021 18:50:31 -0500 Subject: [PATCH 4/9] cleaned up unneeded files and gems --- Gemfile | 7 +- opal-browser.gemspec | 4 +- spec/test_app/Rakefile | 6 - .../app/assets/javascripts/application.js | 9 - .../app/assets/javascripts/application.rb | 3 + .../assets/javascripts/server_rendering.js | 9 - .../app/models/_react_public_models.rb | 2 - spec/test_app/app/models/public/address.rb | 13 - .../test_app/app/models/public/child_model.rb | 3 - spec/test_app/app/models/public/comment.rb | 25 - spec/test_app/app/models/public/test_model.rb | 5 - spec/test_app/app/models/public/todo.rb | 6 - spec/test_app/app/models/public/todo_item.rb | 36 - spec/test_app/app/models/public/user.rb | 88 - .../auto_loader_test_classa_policy.rb | 3 - .../auto_loader_test_classb_policy.rb | 3 - .../auto_loader_test_classc_policy.rb | 3 - .../auto_loader_test_classd_policy.rb | 3 - spec/test_app/app/views/components.rb | 11 - .../app/views/components/say_hello.rb | 7 - spec/test_app/app/views/components/show.rb | 6 - .../app/views/layouts/application.html.erb | 14 - spec/test_app/bin/bundle | 3 - spec/test_app/bin/rails | 4 - spec/test_app/bin/rake | 4 - spec/test_app/bin/setup | 29 - spec/test_app/config/application.rb | 6 - spec/test_app/config/xcable.yml | 10 - spec/test_app/config/xdatabase.yml | 47 - spec/test_app/db/development.sqlite3 | Bin 45056 -> 0 bytes .../20160731182106_create_test_models.rb | 75 - spec/test_app/db/schema.rb | 88 - spec/test_app/db/seeds.rb | 7 - spec/test_app/db/test.sqlite3 | Bin 73728 -> 0 bytes spec/test_app/lib/assets/.keep | 0 spec/test_app/log/development.log | 0 spec/test_app/log/test.log | 10676 +--------------- spec/test_app/public/404.html | 67 - spec/test_app/public/422.html | 67 - spec/test_app/public/500.html | 66 - spec/test_app/public/favicon.ico | 0 .../spec/assets/javascripts/factorial.rb | 4 - .../test_app/spec/assets/stylesheets/test.css | 4 - 43 files changed, 252 insertions(+), 11171 deletions(-) delete mode 100644 spec/test_app/Rakefile delete mode 100644 spec/test_app/app/assets/javascripts/application.js create mode 100644 spec/test_app/app/assets/javascripts/application.rb delete mode 100644 spec/test_app/app/assets/javascripts/server_rendering.js delete mode 100644 spec/test_app/app/models/_react_public_models.rb delete mode 100644 spec/test_app/app/models/public/address.rb delete mode 100644 spec/test_app/app/models/public/child_model.rb delete mode 100644 spec/test_app/app/models/public/comment.rb delete mode 100644 spec/test_app/app/models/public/test_model.rb delete mode 100644 spec/test_app/app/models/public/todo.rb delete mode 100644 spec/test_app/app/models/public/todo_item.rb delete mode 100644 spec/test_app/app/models/public/user.rb delete mode 100644 spec/test_app/app/policies/auto_loader_test_classa_policy.rb delete mode 100644 spec/test_app/app/policies/auto_loader_test_classb_policy.rb delete mode 100644 spec/test_app/app/policies/auto_loader_test_classc_policy.rb delete mode 100644 spec/test_app/app/policies/auto_loader_test_classd_policy.rb delete mode 100644 spec/test_app/app/views/components.rb delete mode 100644 spec/test_app/app/views/components/say_hello.rb delete mode 100644 spec/test_app/app/views/components/show.rb delete mode 100644 spec/test_app/app/views/layouts/application.html.erb delete mode 100644 spec/test_app/bin/bundle delete mode 100644 spec/test_app/bin/rails delete mode 100644 spec/test_app/bin/rake delete mode 100644 spec/test_app/bin/setup delete mode 100644 spec/test_app/config/xcable.yml delete mode 100644 spec/test_app/config/xdatabase.yml delete mode 100644 spec/test_app/db/development.sqlite3 delete mode 100644 spec/test_app/db/migrate/20160731182106_create_test_models.rb delete mode 100644 spec/test_app/db/schema.rb delete mode 100644 spec/test_app/db/seeds.rb delete mode 100644 spec/test_app/db/test.sqlite3 delete mode 100644 spec/test_app/lib/assets/.keep delete mode 100644 spec/test_app/log/development.log delete mode 100644 spec/test_app/public/404.html delete mode 100644 spec/test_app/public/422.html delete mode 100644 spec/test_app/public/500.html delete mode 100644 spec/test_app/public/favicon.ico delete mode 100644 spec/test_app/spec/assets/javascripts/factorial.rb delete mode 100644 spec/test_app/spec/assets/stylesheets/test.css diff --git a/Gemfile b/Gemfile index 7e7c9775..16379f6b 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,4 @@ source 'https://rubygems.org' -gemspec # specs gem 'rake' @@ -18,12 +17,8 @@ gem 'opal', ['>= 1.0', '< 2.0'] gem 'paggio', github: 'meh/paggio' # hyper-spec (for testing http requests) -git 'git://github.com/hyperstack-org/hyperstack.git', branch: 'edge', glob: 'ruby/*/*.gemspec' do +git 'https://github.com/hyperstack-org/hyperstack.git', branch: 'edge', glob: 'ruby/*/*.gemspec' do gem 'hyper-spec' - gem 'hyper-component' - gem 'hyper-store' - gem 'hyper-state' - gem 'hyperstack-config' end gemspec diff --git a/opal-browser.gemspec b/opal-browser.gemspec index 4ada946e..ef18e057 100644 --- a/opal-browser.gemspec +++ b/opal-browser.gemspec @@ -19,10 +19,8 @@ Gem::Specification.new {|s| s.add_dependency 'opal', ['>= 1.0', '< 2.0'] s.add_dependency 'paggio' - s.add_development_dependency 'hyper-spec' - s.add_development_dependency 'pry' + # s.add_development_dependency 'hyper-spec' # pulled in on the Gemfile as we need a specific version from github s.add_development_dependency 'rails', '~> 6.0' s.add_development_dependency 'opal-rails' - s.add_development_dependency 'hyper-component' s.add_development_dependency 'puma' } diff --git a/spec/test_app/Rakefile b/spec/test_app/Rakefile deleted file mode 100644 index ba6b733d..00000000 --- a/spec/test_app/Rakefile +++ /dev/null @@ -1,6 +0,0 @@ -# Add your own tasks in files placed in lib/tasks ending in .rake, -# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. - -require File.expand_path('../config/application', __FILE__) - -Rails.application.load_tasks diff --git a/spec/test_app/app/assets/javascripts/application.js b/spec/test_app/app/assets/javascripts/application.js deleted file mode 100644 index 43638e73..00000000 --- a/spec/test_app/app/assets/javascripts/application.js +++ /dev/null @@ -1,9 +0,0 @@ -//= require 'react' -//= require 'react_ujs' -//= require 'components' -if (typeof(OpalLoaded)=='undefined') { - Opal.load('components'); -} else { - Opal.loaded(OpalLoaded || []); - Opal.require("components"); -} diff --git a/spec/test_app/app/assets/javascripts/application.rb b/spec/test_app/app/assets/javascripts/application.rb new file mode 100644 index 00000000..1e8680c8 --- /dev/null +++ b/spec/test_app/app/assets/javascripts/application.rb @@ -0,0 +1,3 @@ +require 'opal' +require 'browser' +require 'browser/http' diff --git a/spec/test_app/app/assets/javascripts/server_rendering.js b/spec/test_app/app/assets/javascripts/server_rendering.js deleted file mode 100644 index df7910ca..00000000 --- a/spec/test_app/app/assets/javascripts/server_rendering.js +++ /dev/null @@ -1,9 +0,0 @@ -//= require 'react-server' -//= require 'react_ujs' -//= require 'components' -if (typeof(OpalLoaded)=='undefined') { - Opal.load('components'); -} else { - Opal.loaded(OpalLoaded || []); - Opal.require("components"); -} diff --git a/spec/test_app/app/models/_react_public_models.rb b/spec/test_app/app/models/_react_public_models.rb deleted file mode 100644 index 9e0c5b16..00000000 --- a/spec/test_app/app/models/_react_public_models.rb +++ /dev/null @@ -1,2 +0,0 @@ -# app/models/_react_public_models.rb -require_tree './public' if RUBY_ENGINE == 'opal' diff --git a/spec/test_app/app/models/public/address.rb b/spec/test_app/app/models/public/address.rb deleted file mode 100644 index feee85cc..00000000 --- a/spec/test_app/app/models/public/address.rb +++ /dev/null @@ -1,13 +0,0 @@ -class Address < ActiveRecord::Base - - MAPPED_FIELDS = %w(id street city state zip) - - def self.compose(*args) - new.tap do |address| - MAPPED_FIELDS.each_with_index do |field_name, i| - address.send("#{field_name}=", args[i]) - end - end - end - -end \ No newline at end of file diff --git a/spec/test_app/app/models/public/child_model.rb b/spec/test_app/app/models/public/child_model.rb deleted file mode 100644 index 093bb844..00000000 --- a/spec/test_app/app/models/public/child_model.rb +++ /dev/null @@ -1,3 +0,0 @@ -class ChildModel < ActiveRecord::Base - belongs_to :test_model -end diff --git a/spec/test_app/app/models/public/comment.rb b/spec/test_app/app/models/public/comment.rb deleted file mode 100644 index 4984df2b..00000000 --- a/spec/test_app/app/models/public/comment.rb +++ /dev/null @@ -1,25 +0,0 @@ -class Comment < ActiveRecord::Base - # see spec/examples folder for typically setup - belongs_to :author, class_name: "User" - belongs_to :todoz, class_name: "Todo", foreign_key: :todo_id -end - -class Comment < ActiveRecord::Base - - def create_permitted? - # for testing we allow anything if there is no acting_user - # in the real world you would have something like this: - # acting_user and (acting_user.admin? or user_is? acting_user) - !acting_user or user_is? acting_user - end - - def destroy_permitted? - !acting_user or user_is? acting_user - end - - belongs_to :user - belongs_to :todo_item - - has_one :todo, -> {}, class_name: "TodoItem" # this is just so we can test scopes params and null belongs_to relations - -end diff --git a/spec/test_app/app/models/public/test_model.rb b/spec/test_app/app/models/public/test_model.rb deleted file mode 100644 index 797b455f..00000000 --- a/spec/test_app/app/models/public/test_model.rb +++ /dev/null @@ -1,5 +0,0 @@ -class TestModel < ActiveRecord::Base - has_many :child_models - scope :completed, -> () { where(completed: true) } - scope :active, -> () { where(completed: false) } -end diff --git a/spec/test_app/app/models/public/todo.rb b/spec/test_app/app/models/public/todo.rb deleted file mode 100644 index 3cc94920..00000000 --- a/spec/test_app/app/models/public/todo.rb +++ /dev/null @@ -1,6 +0,0 @@ -class Todo < ActiveRecord::Base - # see spec/examples folder for typically setup - belongs_to :owner, class_name: "User" - belongs_to :created_by, class_name: "User" - has_many :comments -end diff --git a/spec/test_app/app/models/public/todo_item.rb b/spec/test_app/app/models/public/todo_item.rb deleted file mode 100644 index d088cc0a..00000000 --- a/spec/test_app/app/models/public/todo_item.rb +++ /dev/null @@ -1,36 +0,0 @@ -class TodoItem < ActiveRecord::Base - - def view_permitted?(attribute) - !acting_user or user_is? acting_user - end - - def update_permitted? - return true unless acting_user - return only_changed? :comments unless user_is? acting_user - true - end - - belongs_to :user - has_many :comments - has_many :commenters, class_name: "User", through: :comments, source: :user - belongs_to :comment # just so we can test an empty belongs_to relationship - - scope :find_string, ->(s) { where("title LIKE ? OR description LIKE ?", "%#{s}%", "%#{s}%") } - - scope :active, -> { where("title LIKE '%mitch%' OR description LIKE '%mitch%'")} - # to_sync :active do |scope, record| - # if record.title =~ /mitch/ || record.description =~ /mitch/ - # scope << record - # else - # scope.delete(record) - # end - # end - - scope :important, -> { where("title LIKE '%another%' OR description LIKE '%another%'")} - # to_sync(:important) {title =~ /another/ || description =~ /another/ } - - def virtual_user_first_name - user.first_name - end unless RUBY_ENGINE == 'opal' - -end diff --git a/spec/test_app/app/models/public/user.rb b/spec/test_app/app/models/public/user.rb deleted file mode 100644 index c7b5e51f..00000000 --- a/spec/test_app/app/models/public/user.rb +++ /dev/null @@ -1,88 +0,0 @@ -class User < ActiveRecord::Base - # see spec/examples folder for typically setup - has_many :assigned_todos, class_name: "Todo", foreign_key: :owner_id - has_many :authored_todos, class_name: "Todo", foreign_key: :created_by_id - has_many :commentz, class_name: "Comment", foreign_key: :author_id - belongs_to :manager, class_name: "User" - has_many :employees, class_name: "User", foreign_key: :manager_id -end - - -class TestData - - def initialize(string, times) - @string = string - @times = times - end - - attr_accessor :string - attr_accessor :times - - def big_string - puts "calling big_string #{string} * #{times}" - string * times - end - -end - -class User < ActiveRecord::Base - - def view_permitted?(attribute) - return self == acting_user if acting_user - super # we call super to test if its there (just for the spec) not really the right way to do it, see comments or todo_items - end - - has_many :todo_items - has_many :comments - has_many :commented_on_items, class_name: "TodoItem", through: :comments, source: :todo_item - - composed_of :address, :class_name => 'Address', :constructor => :compose, :mapping => Address::MAPPED_FIELDS.map {|f| ["address_#{f}", f] } - composed_of :address2, :class_name => 'Address', :constructor => :compose, :mapping => Address::MAPPED_FIELDS.map {|f| ["address2_#{f}", f] } - - composed_of :data, :class_name => 'TestData', :allow_nil => true, :mapping => [['data_string', 'string'], ['data_times', 'times']] - - enum test_enum: [:yes, :no] - - def name - "#{first_name} #{last_name}" - end - - # two examples of server side calculated attributes. The second takes a parameter. - # the first does not rely on an id, so can be used before the record is saved. - - def detailed_name - s = "#{first_name[0]}. #{last_name}" rescue "" - s += " - #{email}" if email - s += " (#{todo_items.size} todo#{'s' if todo_items.size > 1})" if todo_items.size > 0 - s - end unless RUBY_ENGINE == 'opal' - - def expensive_math(n) - n*n - end unless RUBY_ENGINE == 'opal' - - # this is also used for remote calculation in the aggregate test - - def verify_zip - if address.zip =~ /^\d{5}$/ - address.zip - end - end unless RUBY_ENGINE == 'opal' - -end - -class User < ActiveRecord::Base - - def as_json(*args) - {name: "bozo"} - end - - validates :email, format: {with: /\@.+\./}, :allow_nil => true - - def name=(val) # this is here to test ability to save changes to this type of psuedo attribute - val = val.to_s.split(" ") - self.first_name = val[0] - self.last_name = val[1] - end - -end unless RUBY_ENGINE == 'opal' diff --git a/spec/test_app/app/policies/auto_loader_test_classa_policy.rb b/spec/test_app/app/policies/auto_loader_test_classa_policy.rb deleted file mode 100644 index 708c4600..00000000 --- a/spec/test_app/app/policies/auto_loader_test_classa_policy.rb +++ /dev/null @@ -1,3 +0,0 @@ -class AutoLoaderTestClassaPolicy - always_allow_connection -end diff --git a/spec/test_app/app/policies/auto_loader_test_classb_policy.rb b/spec/test_app/app/policies/auto_loader_test_classb_policy.rb deleted file mode 100644 index b4681563..00000000 --- a/spec/test_app/app/policies/auto_loader_test_classb_policy.rb +++ /dev/null @@ -1,3 +0,0 @@ -class AutoLoaderTestClassbPolicy - always_allow_connection -end diff --git a/spec/test_app/app/policies/auto_loader_test_classc_policy.rb b/spec/test_app/app/policies/auto_loader_test_classc_policy.rb deleted file mode 100644 index bf496cfa..00000000 --- a/spec/test_app/app/policies/auto_loader_test_classc_policy.rb +++ /dev/null @@ -1,3 +0,0 @@ -class AutoLoaderTestClassxPolicy - always_allow_connection -end diff --git a/spec/test_app/app/policies/auto_loader_test_classd_policy.rb b/spec/test_app/app/policies/auto_loader_test_classd_policy.rb deleted file mode 100644 index 318ad58a..00000000 --- a/spec/test_app/app/policies/auto_loader_test_classd_policy.rb +++ /dev/null @@ -1,3 +0,0 @@ -class AutoLoaderTestClassyPolicy - always_allow_connection -end diff --git a/spec/test_app/app/views/components.rb b/spec/test_app/app/views/components.rb deleted file mode 100644 index 426f4a7c..00000000 --- a/spec/test_app/app/views/components.rb +++ /dev/null @@ -1,11 +0,0 @@ -require 'opal' -require 'promise' -require 'hyper-component' -require 'hyper-state' -require 'time' -if Hyperstack::Component::IsomorphicHelpers.on_opal_client? - require 'browser' - require 'browser/delay' - require 'browser/http' -end -require_tree './components' diff --git a/spec/test_app/app/views/components/say_hello.rb b/spec/test_app/app/views/components/say_hello.rb deleted file mode 100644 index 18c2c157..00000000 --- a/spec/test_app/app/views/components/say_hello.rb +++ /dev/null @@ -1,7 +0,0 @@ -class SayHello - include Hyperstack::Component - param :name - render(DIV) do - "Hello there #{@Name}" - end -end diff --git a/spec/test_app/app/views/components/show.rb b/spec/test_app/app/views/components/show.rb deleted file mode 100644 index fa78d4c0..00000000 --- a/spec/test_app/app/views/components/show.rb +++ /dev/null @@ -1,6 +0,0 @@ -class Show - include Hyperstack::Component - render(DIV) do - "Hello There From A Controller" - end -end diff --git a/spec/test_app/app/views/layouts/application.html.erb b/spec/test_app/app/views/layouts/application.html.erb deleted file mode 100644 index 9c795c5b..00000000 --- a/spec/test_app/app/views/layouts/application.html.erb +++ /dev/null @@ -1,14 +0,0 @@ - - - - HyperMesh Test App - <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> - <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> - <%= csrf_meta_tags %> - - - -<%= yield %> - - - diff --git a/spec/test_app/bin/bundle b/spec/test_app/bin/bundle deleted file mode 100644 index 66e9889e..00000000 --- a/spec/test_app/bin/bundle +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env ruby -ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) -load Gem.bin_path('bundler', 'bundle') diff --git a/spec/test_app/bin/rails b/spec/test_app/bin/rails deleted file mode 100644 index 5191e692..00000000 --- a/spec/test_app/bin/rails +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env ruby -APP_PATH = File.expand_path('../../config/application', __FILE__) -require_relative '../config/boot' -require 'rails/commands' diff --git a/spec/test_app/bin/rake b/spec/test_app/bin/rake deleted file mode 100644 index 17240489..00000000 --- a/spec/test_app/bin/rake +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env ruby -require_relative '../config/boot' -require 'rake' -Rake.application.run diff --git a/spec/test_app/bin/setup b/spec/test_app/bin/setup deleted file mode 100644 index acdb2c13..00000000 --- a/spec/test_app/bin/setup +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env ruby -require 'pathname' - -# path to your application root. -APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) - -Dir.chdir APP_ROOT do - # This script is a starting point to setup your application. - # Add necessary setup steps to this file: - - puts "== Installing dependencies ==" - system "gem install bundler --conservative" - system "bundle check || bundle install" - - # puts "\n== Copying sample files ==" - # unless File.exist?("config/database.yml") - # system "cp config/database.yml.sample config/database.yml" - # end - - puts "\n== Preparing database ==" - system "bin/rake db:setup" - - puts "\n== Removing old logs and tempfiles ==" - system "rm -f log/*" - system "rm -rf tmp/cache" - - puts "\n== Restarting application server ==" - system "touch tmp/restart.txt" -end diff --git a/spec/test_app/config/application.rb b/spec/test_app/config/application.rb index 6c87017c..50d2b96b 100644 --- a/spec/test_app/config/application.rb +++ b/spec/test_app/config/application.rb @@ -16,7 +16,6 @@ Bundler.require(*Rails.groups(assets: %w(development test))) require 'opal-rails' -require 'hyper-component' module TestApp class Application < Rails::Application @@ -31,14 +30,9 @@ class Application < Rails::Application config.opal.dynamic_require_severity = :ignore config.opal.enable_specs = true config.opal.spec_location = 'spec-opal' - config.hyperstack.auto_config = false config.assets.cache_store = :null_store - config.react.server_renderer_options = { - files: ['server_rendering.js'] - } - config.react.server_renderer_directories = ['/app/assets/javascripts'] # Settings in config/environments/* take precedence over those specified here. # Application configuration should go into files in config/initializers # -- all .rb files in that directory are automatically loaded. diff --git a/spec/test_app/config/xcable.yml b/spec/test_app/config/xcable.yml deleted file mode 100644 index 640b5ee0..00000000 --- a/spec/test_app/config/xcable.yml +++ /dev/null @@ -1,10 +0,0 @@ - -development: - adapter: async - -test: - adapter: async - -production: - adapter: redis - url: redis://10.10.3.153:6381 diff --git a/spec/test_app/config/xdatabase.yml b/spec/test_app/config/xdatabase.yml deleted file mode 100644 index 6021a44a..00000000 --- a/spec/test_app/config/xdatabase.yml +++ /dev/null @@ -1,47 +0,0 @@ -# SQLite version 3.x -# gem install sqlite3 -# -# Ensure the SQLite 3 gem is defined in your Gemfile -# gem 'sqlite3' -# -default: &default - adapter: sqlite3 - encoding: utf8 - username: root - password: - host: 127.0.0.1 - port: 3306 - pool: 5 - timeout: 10000 - -development: - <<: *default - database: development_db_name - -test: - <<: *default - database: test_db_name - -production: - <<: *default - database: production_db_name - -# default: &default -# adapter: sqlite3 -# pool: 5 -# timeout: 10000 -# -# development: -# <<: *default -# database: db/development.sqlite3 -# -# # Warning: The database defined as "test" will be erased and -# # re-generated from your development database when you run "rake". -# # Do not set this db to the same as development or production. -# test: -# <<: *default -# database: db/test.sqlite3 -# -# production: -# <<: *default -# database: db/production.sqlite3 diff --git a/spec/test_app/db/development.sqlite3 b/spec/test_app/db/development.sqlite3 deleted file mode 100644 index 4fe29ad03373552d324abf91bd99a28b68f67a99..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 45056 zcmeI%&u$t=9Ki8iW1E2M;3$Vx4^cNXbqEi6?WIz z9bD&#Q>mvO`XssKIr~W6b`AC}*cZEp2z`-(+21hB{64?o&zPTo+H{l@FZ{r@ zl~^~H4AV5e5yCKxoW3sT>*$izjoHzGzBd!?i<&uO^`HFW!kwupFF}j{9dYZp6#ZNUE8x?O1-4?iKAtu+oj`A z=i*uYej}ch^1FT*-^{0H6~`_$E9I#4w7N3v1kOQJwxUq-NL_W2MdN+}&05RL=G)APjSN-W^}DhcsEXrKiHt{cJk5QTS4M4F~^k z1&`L_SON9h%D$go-Opy`t-E*4-8jAByH6-z_odg7V~3ekvSXchqLNfROnAb7%Uc5eQOA|;ZxCx$TaPTZE^^(eEX`u~SUu&edZwq`sY$Ch^FO|V3ZY)M>` zYz^7;STmUoWbej{IqW7u4vV=i76|5&Oa2B3kQ_F-B{?KOE?g7dSFR);zhoPmZL`1EZS3@{j@jR-H>_^gY}hTU z+aHr$yn3g$vQ}f)R=$3-#x9PzYmt3*vDI8;S8uJ=uGj9cx9_aJwQ}bk`)2JPyRyFa z_UbKQ^H%NF8hh()_*=hu^DFFPW5dLh!-zcH3jDfvlg)1N3g~WH=#z}5+?75#0>g*7XrSRdbI0gl} zyN)wmnhvNstpJc2HUswc+O?JSn``Xlt;>Nshb3+9(KrB()_dJxJ6QT|Vb;Os$(~~s z1k=9rFBindNjnxcJ!rAC&323~^n>Bb+-mjucD-wK0{6C!m_)NB5^jZ~^hj$Q5kjqUluUK3e!0TXM@e-Hzznsl3T)LEaRC0TXomLy3T~^a<_Z!spY|uJr(y@%hWnkDK z_~szk+FOO3p!nn>ylE9~D(gpaJD1FAjFa96`hyWsh2p|H803v`0 zAOeU0B7g`W0*JtKfxxLma!KHLg;PbI*94wZ@}L*`|IbC`q7sMzB7g`W0*C-2fCwN0 zhyWsh2p|H8zz~7csij=d|0nT(SoF`7{scin1P}p401-e05CKF05kLeG0Ym^1Km-th zXA6NFiOj{bD=TLAL91tV$=itJeGuZ=mwB!%sH`AXIjt%P6-5?hUKvjz@qfqv|IcSj zLzD&)Km-s0L;w*$1P}p401-e05CKF05kLf<0)b-cVvd?O@Z$e}R@yDSTKt#dkBYa7 zGljn_JS_0@|2F^Q`QMm7JNJXqr*qfmnEa>t-cyu}SrGw501-e05CKF05kLf9NCawU zXPAr3%E~HhbXc-QC@Xp4DUIc%sw`Ipxgsl)q8>o0{Zg2X7|%u!bZ$JQ_EMOQ5Pvhr z3F>%C?M#>rAA7T`s&c%X4yAS~%qEHeCskBk6l6V8fJdp7!fc{tIyZBY5LK6xYQ=DV zUksh)gsQAodAXu%iX!{@Ba~Vp%*GcZaI+|Cnx{>KQkxI68B-?5$z#|MN^LI8#;+o} zOjYGMAKM6}mJhS>tt)V|s7dkas)TYa2W(1#Rn3h?2=yd27nnHlCX(F*u@ zECTXCTw16~LPh2!P6*Uika8^()=P@=k@Vp|aTJAgA+qQH|Frbe z(!ZBJE`9t$K9o>tL;w*$1P}p401-e05CKF05kLeG0YqTh2%Jl&t|Z*koQ9X@&ZWF0 za{Sl1Bz!%eNnIV@W_8Xb0yhNC2TT5PGIcd~!0}L^z?X*fQYv*ZL7hsG@%;b)F8#dp zS?OofRu=go0*C-2fCwN0hyWsh2p|H803v`0AOeWMi6U@1c`BJ^F6H_roY~xD$w`^% zRGMLO>0BbsEacv~v9hw_`Tq}!pB1+X|6KT}AQ%30?$76h{3rRv9Igg9(JDgbhyWsh z2p|H803v`0&$qJcUb=(maxtqR$}v2NvS|h>#DC^gmNcCgn#MfFjK4hj%h&SjPjIWCBCAG zftC1fX(P&hCVhMh8A&MWP>!sN;Z^N?)uT+Vnbh$uBp`<<>4CQ)9DN-*2xYPy$>Uo{ zKn{3wCW^Zw2cb-qBb#vQ<(Pd4EeUkdTD&92XUMc(sZPj>< z2p|H803v`0AOeU0B7g`W0*C-2@QaARYBtAQfGLI&li0L2S(q`iSbypV981{T0e->d z*JWLcrKlXw^W4_V>P(bXcuNJBl?Ky@0Uy;bgy$rAYv#>Nj=AJYwbe7a_YaZ_HqhY5 z6vL^!w3T@?9mgy_iz3NftdfeNYofB1SxtFLI+J>iWb{f4rixj%-LR)Nj`VH1I1P}p401-e05CKF05kLey z1lCJA<_d}4=A5@-S$^nou&{`N9H&M3L{wNFM)C@^nO1~yX1zFpt?z}HmWQydA8@AGI+WAv^Ap&{O3Ue*uKV5`#nz>qzCD*?V2uXDBof=E4O=|2 zO{;6Nj{D@fB6KztT&Gy|Ifs%etmk6|6=L+Kg7pv())jw?xd>%`JvV`^uYVvjNae#C zq0Fz(#l^IP)=r#?=-T$W~<@yj#ycB9xhRaO)3b>+4TvmULM;fHJcV4t@+8=<5(PQh~3*Fa{5>00cd53k{q zRk`+#$u`Y?qu1KCTUIwtXik%PIlfSb@&N?7%i9hbu*w(Wu*SC0>auI_mOS}mciX1X zhf*xo-Z5-;yJy0Gd#BaiX7{WC+iW%69PwrI67@DSt(Hb8$@>rr*MAiX&oM@qXydBI zZdpAy6zndi-7(1ORg3Ky-91O|er#!~3Y!Ovr?eqJUVhUp%#Gy76l1WPt!;LT=tx#Q z+ZJfr(K?@-bk z5JEqKmC>vPS)*z?Liqrq=u@?_Knc7k`eD`xC3zoW?N4WAG*4dRV5^L{eGnW<8zS&y zt?X?eE;Gyx5a=S~wC0{QfNj^n%v#}-*pkoGCIEqJ9zl^8=<5($kO}6_hkVF1P%}T2;~C^(@)jP z0wusvqp`aRz)BCGB=18o|LLqOP#UjLRu-YOA;dq{%3xa&mUNj1_hmFs4qoK&A8Zkd z=l}oFbMW{_6%YYL01-e05CKF05kLeG0Ym^1Km-thX90ozQ;AvTwfzN{>s^EC>6P8x zb_=#|h3Q>*r9#m+HL2X-B)u%D!e-e}WU(x6am}sG%_i&<%9R_NqArW7{zfv(z$6Q^ z5@HgXJ%L>V_zFxubJSd>>;Fq5ipG2X|35wp0HF+s03v`0AOeU0B7g`W0*C-2fCwN0 zhyWsR1OzU_34eEI%jGh=W81scn-Oil}euY|H&N3%>5nw zW0=!NCYda$mPEFiq#QmHkXRn|>{J%nIsr44z8 z-^s#CvspLnDtnEO7wO=8%PJYJA7tUHG%V`~pQk=Zi;r32W5~Ngjd**|dHR#t}OLS}r zk}0*EeC3ItK5e}nLb-62Pfw^YY%J><(;ht7nL;Yl4Su`q1$YO?LR9I-gbd zDUko(mvR~AqbnmThTh-qS$nZ&EUK{Z61EB>p_}0ojOR2s2TaspIr|r4#-tQzF2g4n zwIJC||NnS)c`Kiz9sCJCyJAYEJNfB!?=giO)_`NO`UdP)*2G5_`@x6#?^k9s%5t}Kiei%-KiT^o*cu7M89xu@(7n#*jYw{nfy z8Ab>1oXVIwM#-mYy#B!WnHF~Fz$M}H4E&vfztS)bKM;WvK;X%HWD4M2?-4bA3V=MK zI0eQ~^dpKKqze1G>d>lQU^hS_C%mdU2LOG6GXOEAp1>%I)UXIIkw#UU;|*? zqo`+M1|SB(LqBDrRX(K|fEd^gEmX9!Jj933J!%GEgUkSkUdumda4O3xywDmLoPz$k zs&d31!nBTV!)wRI+Ws)X{8Z|2eLc(s|qIi_9WgSGJ?mt{eVK^7nvq(h2QKAYv9~j%i zS!y@Mi80jOnR&1xML|@mMzh&7`~5mh2bw0tdED9=r8ZjjUO269L*yi!_Ly#B?4FN(G|luxrw>8ell<^kx{supN4^bpYbQVStiaf$?UG66Yu|vj50(^J&|$hIMog@P7P;8_n#~?in#wndmr!qN6mZKw1*!7TR&m{ aKWcSH=&B+H5gpwPRhrfyFI?g=h5bJ~Qh{** diff --git a/spec/test_app/lib/assets/.keep b/spec/test_app/lib/assets/.keep deleted file mode 100644 index e69de29b..00000000 diff --git a/spec/test_app/log/development.log b/spec/test_app/log/development.log deleted file mode 100644 index e69de29b..00000000 diff --git a/spec/test_app/log/test.log b/spec/test_app/log/test.log index 409631d0..7d26a212 100644 --- a/spec/test_app/log/test.log +++ b/spec/test_app/log/test.log @@ -1,10710 +1,528 @@ -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:40 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (3528.0ms) -Completed 200 OK in 3532ms (Views: 3529.7ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:44 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:44 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:44 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:44 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:44 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:45 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (94.0ms) -Completed 200 OK in 95ms (Views: 94.2ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:45 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:45 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:45 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:45 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:45 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:47 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (66.1ms) -Completed 200 OK in 67ms (Views: 66.4ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:47 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:47 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:47 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:47 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:47 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:48 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (69.5ms) -Completed 200 OK in 70ms (Views: 69.8ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:49 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:49 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:49 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:49 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:49 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:50 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (75.6ms) -Completed 200 OK in 76ms (Views: 75.9ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:50 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:50 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:50 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:50 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:50 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:51 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (657.9ms) -Completed 200 OK in 659ms (Views: 658.2ms) -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:52 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:52 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:53 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (26.5ms) -Completed 200 OK in 88ms (Views: 87.1ms) -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:53 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:53 -0500 -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:53 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:53 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:53 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:54 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (126.5ms) -Completed 200 OK in 127ms (Views: 126.8ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:54 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:54 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:54 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:54 -0500 -Started GET "/assets/test.css" for 127.0.0.1 at 2017-02-06 14:37:54 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:56 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (351.3ms) -Completed 200 OK in 352ms (Views: 351.8ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:56 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:56 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:56 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:56 -0500 -Started GET "/assets/factorial.js" for 127.0.0.1 at 2017-02-06 14:37:57 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:37:58 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (61.8ms) -Completed 200 OK in 62ms (Views: 62.1ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:37:58 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:37:58 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:37:58 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:37:58 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:37:58 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:02 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (102.7ms) -Completed 200 OK in 104ms (Views: 103.3ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:02 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:02 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:02 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:02 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:02 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:05 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (71.5ms) -Completed 200 OK in 72ms (Views: 71.7ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:05 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:05 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:05 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:05 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:05 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:08 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (65.7ms) -Completed 200 OK in 66ms (Views: 66.0ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:08 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:08 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:08 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:08 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:08 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:09 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (57.6ms) -Completed 200 OK in 58ms (Views: 57.8ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:09 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:09 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:09 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:09 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:09 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:14 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (63.8ms) -Completed 200 OK in 64ms (Views: 64.0ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:14 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:14 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:14 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:14 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:14 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:17 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (62.7ms) -Completed 200 OK in 64ms (Views: 63.1ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:17 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:17 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:17 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:17 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:17 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-02-06 14:38:19 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (65.9ms) -Completed 200 OK in 67ms (Views: 66.2ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-02-06 14:38:19 -0500 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-02-06 14:38:19 -0500 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-02-06 14:38:19 -0500 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-02-06 14:38:19 -0500 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-02-06 14:38:19 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:00 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (592.2ms) -Completed 200 OK in 606ms (Views: 602.6ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:01 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:01 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:01 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:01 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:01 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (128.1ms) -Completed 200 OK in 129ms (Views: 128.3ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (66.5ms) -Completed 200 OK in 67ms (Views: 66.7ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:02 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:03 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (62.4ms) -Completed 200 OK in 63ms (Views: 62.6ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:03 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:03 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:03 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:03 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:03 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:04 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (69.3ms) -Completed 200 OK in 70ms (Views: 69.7ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:04 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:04 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:04 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:04 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:04 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:05 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (348.7ms) -Completed 200 OK in 349ms (Views: 349.0ms) -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:05 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:05 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (15.0ms) -Completed 200 OK in 68ms (Views: 67.6ms) -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (62.8ms) -Completed 200 OK in 64ms (Views: 63.2ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:06 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 -Started GET "/assets/test.css" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (71.2ms) -Completed 200 OK in 72ms (Views: 71.4ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 -Started GET "/assets/factorial.js" for 127.0.0.1 at 2017-03-22 15:47:07 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:08 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (58.7ms) -Completed 200 OK in 59ms (Views: 58.9ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:08 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:08 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:08 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:08 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:08 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:11 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (56.8ms) -Completed 200 OK in 58ms (Views: 57.2ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:11 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:11 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:11 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:11 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:11 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:12 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (57.4ms) -Completed 200 OK in 58ms (Views: 57.6ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:12 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:12 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:12 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:12 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:12 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (60.6ms) -Completed 200 OK in 61ms (Views: 60.9ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:13 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (79.1ms) -Completed 200 OK in 80ms (Views: 79.3ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:14 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:14 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:14 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:14 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:14 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:17 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (88.7ms) -Completed 200 OK in 89ms (Views: 89.0ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:17 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:17 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:17 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:17 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:17 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:19 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (106.8ms) -Completed 200 OK in 107ms (Views: 107.1ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:19 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:19 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:19 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:19 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:19 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:47:20 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (70.6ms) -Completed 200 OK in 71ms (Views: 70.9ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 15:47:20 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 15:47:20 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 15:47:20 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 15:47:20 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 15:47:20 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:35 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (648.6ms) -Completed 200 OK in 652ms (Views: 650.0ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:35 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:35 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:35 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:35 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:35 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:36 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (54.9ms) -Completed 200 OK in 56ms (Views: 55.1ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:36 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:36 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:36 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:36 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:36 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:37 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (79.4ms) -Completed 200 OK in 80ms (Views: 79.7ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:37 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:37 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:37 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:37 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:37 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:38 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (91.1ms) -Completed 200 OK in 92ms (Views: 91.4ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:38 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:38 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:38 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:38 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:38 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:39 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (61.4ms) -Completed 200 OK in 62ms (Views: 61.6ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:39 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:39 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:39 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:39 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:39 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:40 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (315.9ms) -Completed 200 OK in 317ms (Views: 316.2ms) -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:40 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:40 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:41 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (13.4ms) -Completed 200 OK in 65ms (Views: 64.7ms) -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:41 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:41 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:41 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:41 -0400 -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:41 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (67.0ms) -Completed 200 OK in 68ms (Views: 67.3ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 -Started GET "/assets/test.css" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (72.9ms) -Completed 200 OK in 74ms (Views: 73.2ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 -Started GET "/assets/factorial.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:42 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:43 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (63.4ms) -Completed 200 OK in 64ms (Views: 63.7ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:43 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:43 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:43 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:44 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:44 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:46 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (60.9ms) -Completed 200 OK in 62ms (Views: 61.2ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:46 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:46 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:46 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:46 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:46 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:47 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (55.1ms) -Completed 200 OK in 56ms (Views: 55.3ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:47 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:47 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:47 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:47 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:47 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:48 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (76.8ms) -Completed 200 OK in 77ms (Views: 77.1ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:48 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:48 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:48 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:48 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:48 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:49 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (62.8ms) -Completed 200 OK in 63ms (Views: 63.1ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:49 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:49 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:49 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:49 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:49 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:53 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (60.7ms) -Completed 200 OK in 61ms (Views: 61.0ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:53 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:53 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:53 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:53 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:53 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:55 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (54.8ms) -Completed 200 OK in 55ms (Views: 55.1ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:55 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:55 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:55 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:55 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:55 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 16:07:56 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (61.2ms) -Completed 200 OK in 62ms (Views: 61.4ms) -Started GET "/assets/jquery.js" for 127.0.0.1 at 2017-03-22 16:07:56 -0400 -Started GET "/assets/jquery_ujs.js" for 127.0.0.1 at 2017-03-22 16:07:56 -0400 -Started GET "/assets/application.css" for 127.0.0.1 at 2017-03-22 16:07:56 -0400 -Started GET "/assets/time_cop.js" for 127.0.0.1 at 2017-03-22 16:07:56 -0400 -Started GET "/assets/application.js" for 127.0.0.1 at 2017-03-22 16:07:56 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:10 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (3523.2ms) -Completed 200 OK in 3527ms (Views: 3525.3ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 14:18:14 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 14:18:14 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 14:18:14 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 14:18:14 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 14:18:14 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:15 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (36.2ms) -Completed 200 OK in 37ms (Views: 36.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:16 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.1ms) -Completed 200 OK in 40ms (Views: 39.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:17 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (59.9ms) -Completed 200 OK in 61ms (Views: 60.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:18 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.0ms) -Completed 200 OK in 42ms (Views: 41.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:19 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1513711100.271897 ********************************************* - Rendered inline template (492.2ms) -Completed 200 OK in 493ms (Views: 492.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:21 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (8.5ms) -Completed 200 OK in 37ms (Views: 36.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:22 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (44.2ms) -Completed 200 OK in 45ms (Views: 44.5ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2017-12-19 14:18:22 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:23 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.6ms) -Completed 200 OK in 42ms (Views: 41.9ms) -Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2017-12-19 14:18:23 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:24 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (70.3ms) -Completed 200 OK in 71ms (Views: 70.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:27 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (46.7ms) -Completed 200 OK in 48ms (Views: 47.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:29 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (74.9ms) -Completed 200 OK in 76ms (Views: 75.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:31 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.7ms) -Completed 200 OK in 26ms (Views: 26.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:32 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (32.5ms) -Completed 200 OK in 35ms (Views: 34.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:36 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.3ms) -Completed 200 OK in 25ms (Views: 24.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:38 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.3ms) -Completed 200 OK in 27ms (Views: 25.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:18:39 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (37.7ms) -Completed 200 OK in 38ms (Views: 38.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:23:01 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (877.1ms) -Completed 200 OK in 881ms (Views: 878.6ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 14:23:02 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 14:23:02 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 14:23:02 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 14:23:02 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 14:23:02 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:31:46 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (728.6ms) -Completed 200 OK in 732ms (Views: 729.8ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 14:31:47 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 14:31:47 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 14:31:47 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 14:31:47 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 14:31:47 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:43:22 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (778.3ms) -Completed 200 OK in 781ms (Views: 779.5ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 14:43:22 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 14:43:22 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 14:43:22 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 14:43:22 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 14:43:22 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:48:14 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (773.2ms) -Completed 200 OK in 777ms (Views: 774.5ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 14:48:15 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 14:48:15 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 14:48:15 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 14:48:15 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 14:48:15 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 14:55:21 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (756.7ms) -Completed 200 OK in 760ms (Views: 758.2ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 14:55:22 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 14:55:22 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 14:55:22 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 14:55:22 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 14:55:22 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 15:02:56 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (698.9ms) -Completed 200 OK in 702ms (Views: 700.3ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 15:02:57 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 15:02:57 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 15:02:57 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 15:02:57 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 15:02:57 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 15:15:32 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (767.6ms) -Completed 200 OK in 771ms (Views: 768.9ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 15:15:33 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 15:15:33 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 15:15:33 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 15:15:33 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 15:15:33 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 16:59:59 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (830.3ms) -Completed 200 OK in 838ms (Views: 832.6ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:00:00 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:00:00 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:00:00 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:00:00 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:00:00 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:00:17 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (672.4ms) -Completed 200 OK in 675ms (Views: 673.5ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:00:17 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:00:17 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:00:17 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:00:17 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:00:17 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:10:58 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (888.5ms) -Completed 200 OK in 892ms (Views: 889.8ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:10:59 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:10:59 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:10:59 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:10:59 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:10:59 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:13:08 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (723.3ms) -Completed 200 OK in 726ms (Views: 724.5ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:13:09 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:13:09 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:13:09 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:13:09 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:13:09 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:15:31 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (751.8ms) -Completed 200 OK in 756ms (Views: 753.5ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:15:32 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:15:32 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:15:32 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:15:32 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:15:32 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:17:10 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (811.9ms) -Completed 200 OK in 815ms (Views: 813.1ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:17:11 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:17:11 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:17:11 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:17:11 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:17:11 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:34:58 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (784.0ms) -Completed 200 OK in 788ms (Views: 785.3ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:34:59 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:34:59 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:34:59 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:34:59 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:34:59 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:36:38 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (700.2ms) -Completed 200 OK in 703ms (Views: 701.4ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:36:39 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:36:39 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:36:39 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:36:39 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:36:39 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:56:07 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (722.2ms) -Completed 200 OK in 725ms (Views: 723.5ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:56:08 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:56:08 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:56:08 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:56:08 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:56:08 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:56:21 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (725.5ms) -Completed 200 OK in 729ms (Views: 727.0ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:56:22 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:56:22 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:56:22 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:56:22 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:56:22 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 17:57:28 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (687.2ms) -Completed 200 OK in 689ms (Views: 688.1ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 17:57:28 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 17:57:28 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 17:57:28 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 17:57:28 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 17:57:28 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:09:58 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1416.7ms) -Completed 200 OK in 1423ms (Views: 1419.3ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-19 18:10:00 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-19 18:10:00 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-19 18:10:00 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-19 18:10:00 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-19 18:10:00 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:04 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (66.0ms) -Completed 200 OK in 67ms (Views: 66.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:06 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (68.8ms) -Completed 200 OK in 70ms (Views: 69.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:07 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (74.2ms) -Completed 200 OK in 76ms (Views: 74.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:08 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (64.5ms) -Completed 200 OK in 66ms (Views: 64.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:09 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1513725010.4211771 ********************************************* - Rendered inline template (547.0ms) -Completed 200 OK in 548ms (Views: 547.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:11 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (12.5ms) -Completed 200 OK in 59ms (Views: 58.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:12 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (102.9ms) -Completed 200 OK in 104ms (Views: 103.4ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2017-12-19 18:10:12 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:13 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (74.7ms) -Completed 200 OK in 76ms (Views: 75.3ms) -Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2017-12-19 18:10:13 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:15 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (76.1ms) -Completed 200 OK in 77ms (Views: 76.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:18 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (124.5ms) -Completed 200 OK in 126ms (Views: 125.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:20 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (96.0ms) -Completed 200 OK in 98ms (Views: 96.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:22 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (86.6ms) -Completed 200 OK in 88ms (Views: 87.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:23 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (114.7ms) -Completed 200 OK in 116ms (Views: 115.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:28 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (66.1ms) -Completed 200 OK in 67ms (Views: 66.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:30 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (70.9ms) -Completed 200 OK in 72ms (Views: 71.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-19 18:10:31 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (66.3ms) -Completed 200 OK in 67ms (Views: 66.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:39 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (765.6ms) -Completed 200 OK in 769ms (Views: 766.8ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-20 11:09:39 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-20 11:09:39 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-20 11:09:39 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-20 11:09:39 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-20 11:09:39 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:42 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.3ms) -Completed 200 OK in 25ms (Views: 24.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:43 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.7ms) -Completed 200 OK in 25ms (Views: 24.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:44 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.8ms) -Completed 200 OK in 27ms (Views: 26.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:45 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (26.3ms) -Completed 200 OK in 27ms (Views: 26.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:46 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1513786186.666919 ********************************************* - Rendered inline template (292.2ms) -Completed 200 OK in 293ms (Views: 292.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:47 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (23.4ms) -Completed 200 OK in 71ms (Views: 67.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:48 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (45.4ms) -Completed 200 OK in 46ms (Views: 45.6ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2017-12-20 11:09:48 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:49 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (30.1ms) -Completed 200 OK in 31ms (Views: 30.4ms) -Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2017-12-20 11:09:49 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:50 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (34.8ms) -Completed 200 OK in 35ms (Views: 35.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:54 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (55.9ms) -Completed 200 OK in 57ms (Views: 56.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:55 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (35.3ms) -Completed 200 OK in 36ms (Views: 35.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:56 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (44.1ms) -Completed 200 OK in 45ms (Views: 44.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:09:57 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (48.7ms) -Completed 200 OK in 50ms (Views: 48.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:01 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.5ms) -Completed 200 OK in 26ms (Views: 25.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:03 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.5ms) -Completed 200 OK in 26ms (Views: 25.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:04 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (32.6ms) -Completed 200 OK in 33ms (Views: 32.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:33 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (710.7ms) -Completed 200 OK in 714ms (Views: 711.9ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-20 11:10:34 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-20 11:10:34 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-20 11:10:34 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-20 11:10:34 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-20 11:10:34 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:35 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (26.6ms) -Completed 200 OK in 27ms (Views: 26.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:36 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.5ms) -Completed 200 OK in 26ms (Views: 25.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:37 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (22.9ms) -Completed 200 OK in 24ms (Views: 23.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:38 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.6ms) -Completed 200 OK in 25ms (Views: 24.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:39 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1513786239.469022 ********************************************* - Rendered inline template (269.5ms) -Completed 200 OK in 270ms (Views: 269.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:40 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (5.5ms) -Completed 200 OK in 26ms (Views: 26.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:41 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (30.5ms) -Completed 200 OK in 31ms (Views: 30.8ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2017-12-20 11:10:41 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:42 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.7ms) -Completed 200 OK in 43ms (Views: 43.0ms) -Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2017-12-20 11:10:42 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:43 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (26.6ms) -Completed 200 OK in 27ms (Views: 26.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:46 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (26.2ms) -Completed 200 OK in 27ms (Views: 26.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:47 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.1ms) -Completed 200 OK in 26ms (Views: 25.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:48 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (32.2ms) -Completed 200 OK in 33ms (Views: 32.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:49 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (26.4ms) -Completed 200 OK in 27ms (Views: 26.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:53 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.8ms) -Completed 200 OK in 42ms (Views: 42.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:55 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.7ms) -Completed 200 OK in 26ms (Views: 26.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-20 11:10:56 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.3ms) -Completed 200 OK in 25ms (Views: 24.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:47 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (809.3ms) -Completed 200 OK in 813ms (Views: 810.6ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 12:56:48 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 12:56:48 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 12:56:48 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 12:56:48 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 12:56:48 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:49 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (26.2ms) -Completed 200 OK in 27ms (Views: 26.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:50 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (23.4ms) -Completed 200 OK in 24ms (Views: 23.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:51 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.4ms) -Completed 200 OK in 25ms (Views: 24.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:52 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.7ms) -Completed 200 OK in 25ms (Views: 25.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:53 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1513879013.711444 ********************************************* - Rendered inline template (281.3ms) -Completed 200 OK in 282ms (Views: 281.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:54 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (10.1ms) -Completed 200 OK in 38ms (Views: 37.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:55 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (26.9ms) -Completed 200 OK in 28ms (Views: 27.2ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2017-12-21 12:56:55 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:56 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.5ms) -Completed 200 OK in 42ms (Views: 41.8ms) -Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2017-12-21 12:56:56 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:56:57 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (28.4ms) -Completed 200 OK in 29ms (Views: 28.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:00 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.1ms) -Completed 200 OK in 26ms (Views: 25.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:01 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.8ms) -Completed 200 OK in 25ms (Views: 25.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:02 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.5ms) -Completed 200 OK in 26ms (Views: 25.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:03 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.1ms) -Completed 200 OK in 26ms (Views: 25.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:07 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.7ms) -Completed 200 OK in 41ms (Views: 41.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:09 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.0ms) -Completed 200 OK in 26ms (Views: 25.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 12:57:10 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.3ms) -Completed 200 OK in 26ms (Views: 25.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:28:05 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (772.7ms) -Completed 200 OK in 776ms (Views: 774.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 13:28:06 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 13:28:06 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 13:28:06 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 13:28:06 -0500 -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 13:28:11 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:28:56 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (28.5ms) -Completed 200 OK in 29ms (Views: 28.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:28:57 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (28.1ms) -Completed 200 OK in 29ms (Views: 28.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:28:58 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.1ms) -Completed 200 OK in 26ms (Views: 25.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:28:59 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.7ms) -Completed 200 OK in 26ms (Views: 25.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:00 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1513880940.7192802 ********************************************* - Rendered inline template (267.9ms) -Completed 200 OK in 269ms (Views: 268.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:01 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (7.1ms) -Completed 200 OK in 29ms (Views: 29.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:02 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (49.8ms) -Completed 200 OK in 50ms (Views: 50.0ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2017-12-21 13:29:02 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:03 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (31.1ms) -Completed 200 OK in 32ms (Views: 31.4ms) -Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2017-12-21 13:29:03 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:04 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (32.2ms) -Completed 200 OK in 33ms (Views: 32.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:07 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.2ms) -Completed 200 OK in 42ms (Views: 41.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:08 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (37.4ms) -Completed 200 OK in 38ms (Views: 37.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:10 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (61.8ms) -Completed 200 OK in 63ms (Views: 62.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:11 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (52.5ms) -Completed 200 OK in 53ms (Views: 52.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:15 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (32.0ms) -Completed 200 OK in 33ms (Views: 32.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:16 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.3ms) -Completed 200 OK in 26ms (Views: 25.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:17 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (23.2ms) -Completed 200 OK in 24ms (Views: 23.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 13:29:36 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (745.6ms) -Completed 200 OK in 750ms (Views: 747.7ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 13:29:37 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 13:29:37 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 13:29:37 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 13:29:37 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 13:29:37 -0500 -Started GET "/" for 127.0.0.1 at 2017-12-21 14:27:30 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 14:39:41 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (839.8ms) -Completed 200 OK in 843ms (Views: 841.1ms) -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 14:39:42 -0500 -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 14:39:42 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 14:39:42 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 14:39:42 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 14:39:42 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 14:40:07 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (695.7ms) -Completed 200 OK in 698ms (Views: 696.6ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 14:40:08 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 14:40:08 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 14:40:08 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 14:40:08 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 14:40:08 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 14:43:06 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (627.0ms) -Completed 200 OK in 630ms (Views: 628.1ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 14:43:06 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 14:43:06 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 14:43:06 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 14:43:06 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 14:43:06 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 14:48:10 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (970.2ms) -Completed 200 OK in 975ms (Views: 972.1ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 14:48:11 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 14:48:11 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 14:48:11 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 14:48:11 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 14:48:11 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 14:59:06 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (747.8ms) -Completed 200 OK in 752ms (Views: 749.2ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 14:59:06 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 14:59:06 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 14:59:06 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 14:59:06 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 14:59:06 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 15:14:18 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (770.8ms) -Completed 200 OK in 774ms (Views: 772.1ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 15:14:19 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 15:14:19 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 15:14:19 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 15:14:19 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 15:14:19 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 15:18:38 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (750.5ms) -Completed 200 OK in 754ms (Views: 751.7ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 15:18:38 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 15:18:38 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 15:18:38 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 15:18:38 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 15:18:38 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 15:19:05 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (721.8ms) -Completed 200 OK in 724ms (Views: 722.8ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 15:19:06 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 15:19:06 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 15:19:06 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 15:19:06 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 15:19:06 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 15:30:57 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (807.5ms) -Completed 200 OK in 811ms (Views: 808.8ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 15:30:58 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 15:30:58 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 15:30:58 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 15:30:58 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 15:30:58 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 16:36:50 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (783.7ms) -Completed 200 OK in 788ms (Views: 785.2ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 16:36:51 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 16:36:51 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 16:36:51 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 16:36:51 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 16:36:51 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 16:59:51 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (757.5ms) -Completed 200 OK in 760ms (Views: 758.6ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 16:59:52 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 16:59:52 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 16:59:52 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 16:59:52 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 16:59:52 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 17:16:10 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (742.3ms) -Completed 200 OK in 745ms (Views: 743.3ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 17:16:10 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 17:16:10 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 17:16:10 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 17:16:10 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 17:16:10 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 17:17:29 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (877.0ms) -Completed 200 OK in 880ms (Views: 878.0ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 17:17:30 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 17:17:30 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 17:17:30 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 17:17:30 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 17:17:30 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 17:18:44 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (707.9ms) -Completed 200 OK in 710ms (Views: 709.2ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 17:18:45 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 17:18:45 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 17:18:45 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 17:18:45 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 17:18:45 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 17:19:07 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (692.7ms) -Completed 200 OK in 695ms (Views: 693.6ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 17:19:07 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 17:19:07 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 17:19:07 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 17:19:07 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 17:19:07 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 17:20:14 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (690.8ms) -Completed 200 OK in 694ms (Views: 691.9ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 17:20:14 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 17:20:14 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 17:20:14 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 17:20:14 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 17:20:14 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-21 17:24:23 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (837.0ms) -Completed 200 OK in 841ms (Views: 838.7ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-21 17:24:24 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-21 17:24:24 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-21 17:24:24 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-21 17:24:24 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-21 17:24:24 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 09:42:55 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (751.6ms) -Completed 200 OK in 755ms (Views: 752.9ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 09:42:56 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 09:42:56 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 09:42:56 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 09:42:56 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 09:42:56 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 09:44:37 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (726.8ms) -Completed 200 OK in 730ms (Views: 727.9ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 09:44:38 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 09:44:38 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 09:44:38 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 09:44:38 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 09:44:38 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 09:47:33 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (797.9ms) -Completed 200 OK in 802ms (Views: 799.6ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 09:47:34 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 09:47:34 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 09:47:34 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 09:47:34 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 09:47:34 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 09:48:46 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (758.2ms) -Completed 200 OK in 761ms (Views: 759.7ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 09:48:47 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 09:48:47 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 09:48:47 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 09:48:47 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 09:48:47 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 09:52:10 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (729.4ms) -Completed 200 OK in 744ms (Views: 730.5ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 09:52:11 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 09:52:11 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 09:52:11 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 09:52:11 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 09:52:11 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:05:12 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (806.5ms) -Completed 200 OK in 812ms (Views: 808.8ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:05:13 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:05:13 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:05:13 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:05:13 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:05:13 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:05:57 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (736.9ms) -Completed 200 OK in 750ms (Views: 738.1ms) -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:05:58 -0500 -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:05:58 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:05:58 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:05:58 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:05:58 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:09:02 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (748.4ms) -Completed 200 OK in 751ms (Views: 749.5ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:09:03 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:09:03 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:09:03 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:09:03 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:09:03 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:10:20 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (748.5ms) -Completed 200 OK in 752ms (Views: 749.7ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:10:21 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:10:21 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:10:21 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:10:21 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:10:21 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:11:51 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (706.4ms) -Completed 200 OK in 709ms (Views: 707.6ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:11:51 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:11:51 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:11:51 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:11:51 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:11:51 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:12:17 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (578.1ms) -Completed 200 OK in 580ms (Views: 579.1ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:12:18 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:12:18 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:12:18 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:12:18 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:12:18 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:13:17 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (724.2ms) -Completed 200 OK in 727ms (Views: 725.1ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:13:18 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:13:18 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:13:18 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:13:18 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:13:18 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:38:30 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (848.5ms) -Completed 200 OK in 852ms (Views: 849.7ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:38:30 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:38:30 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:38:30 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:38:31 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:38:31 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:39:09 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (676.9ms) -Completed 200 OK in 680ms (Views: 678.5ms) -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:39:10 -0500 -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:39:10 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:39:10 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:39:10 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:39:10 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2017-12-22 10:40:14 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (770.6ms) -Completed 200 OK in 774ms (Views: 771.8ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2017-12-22 10:40:15 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2017-12-22 10:40:15 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2017-12-22 10:40:15 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2017-12-22 10:40:15 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2017-12-22 10:40:15 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:21:18 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515097279.6067069 ********************************************* - Rendered inline template (1116.2ms) -Completed 200 OK in 1120ms (Views: 1117.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:21:19 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:21:19 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:22:23 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515097344.564832 ********************************************* - Rendered inline template (937.9ms) -Completed 200 OK in 941ms (Views: 939.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:22:24 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:22:24 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:23:49 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515097430.241463 ********************************************* - Rendered inline template (969.5ms) -Completed 200 OK in 972ms (Views: 970.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:23:50 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:23:50 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:24:39 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515097480.880393 ********************************************* - Rendered inline template (957.6ms) -Completed 200 OK in 960ms (Views: 958.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:24:40 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:24:40 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:25:33 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515097533.952251 ********************************************* - Rendered inline template (920.9ms) -Completed 200 OK in 924ms (Views: 922.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:25:33 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:25:33 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:27:30 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515097651.7302551 ********************************************* - Rendered inline template (919.5ms) -Completed 200 OK in 922ms (Views: 920.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:27:31 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:27:31 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:13 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (692.2ms) -Completed 200 OK in 695ms (Views: 693.4ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 15:45:13 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 15:45:13 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:45:13 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:45:13 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 15:45:13 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:25 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (63.2ms) -Completed 200 OK in 64ms (Views: 63.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:26 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (54.3ms) -Completed 200 OK in 56ms (Views: 54.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:27 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (44.7ms) -Completed 200 OK in 46ms (Views: 44.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:29 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.8ms) -Completed 200 OK in 26ms (Views: 25.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:30 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515098730.510491 ********************************************* - Rendered inline template (225.0ms) -Completed 200 OK in 226ms (Views: 225.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:31 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (8.0ms) -Completed 200 OK in 29ms (Views: 28.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:32 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (33.1ms) -Completed 200 OK in 34ms (Views: 33.4ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 15:45:32 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:33 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (27.8ms) -Completed 200 OK in 30ms (Views: 29.8ms) -Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 15:45:33 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:35 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (30.5ms) -Completed 200 OK in 31ms (Views: 30.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:38 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (30.0ms) -Completed 200 OK in 31ms (Views: 30.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:40 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.0ms) -Completed 200 OK in 25ms (Views: 24.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:41 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (32.4ms) -Completed 200 OK in 33ms (Views: 32.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:43 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.4ms) -Completed 200 OK in 25ms (Views: 24.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:47 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (23.4ms) -Completed 200 OK in 24ms (Views: 23.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:49 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.0ms) -Completed 200 OK in 25ms (Views: 24.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:45:50 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.6ms) -Completed 200 OK in 44ms (Views: 43.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:51:28 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (715.6ms) -Completed 200 OK in 719ms (Views: 716.8ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 15:51:28 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 15:51:28 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:51:28 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 15:51:28 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:51:28 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:54:06 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515099247.15755 ********************************************* - Rendered inline template (922.7ms) -Completed 200 OK in 926ms (Views: 924.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:54:07 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:54:07 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:54:58 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515099299.456007 ********************************************* - Rendered inline template (938.4ms) -Completed 200 OK in 941ms (Views: 939.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:54:59 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:54:59 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:56:45 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515099406.724363 ********************************************* - Rendered inline template (927.4ms) -Completed 200 OK in 931ms (Views: 928.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:56:46 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:56:46 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:57:46 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515099466.894321 ********************************************* - Rendered inline template (857.4ms) -Completed 200 OK in 860ms (Views: 858.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:57:46 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:57:46 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:30 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (670.8ms) -Completed 200 OK in 674ms (Views: 672.2ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 15:59:31 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 15:59:31 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 15:59:31 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 15:59:31 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 15:59:31 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:32 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (27.5ms) -Completed 200 OK in 28ms (Views: 27.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:33 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (23.6ms) -Completed 200 OK in 25ms (Views: 23.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:34 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.1ms) -Completed 200 OK in 25ms (Views: 24.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:35 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (22.6ms) -Completed 200 OK in 23ms (Views: 22.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:36 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515099577.02159 ********************************************* - Rendered inline template (222.0ms) -Completed 200 OK in 223ms (Views: 222.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:37 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (5.8ms) -Completed 200 OK in 26ms (Views: 25.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:38 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (27.0ms) -Completed 200 OK in 28ms (Views: 27.3ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 15:59:39 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:40 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (23.4ms) -Completed 200 OK in 24ms (Views: 23.7ms) -Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 15:59:40 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:41 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (34.3ms) -Completed 200 OK in 35ms (Views: 34.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:44 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (26.1ms) -Completed 200 OK in 27ms (Views: 26.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:45 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (34.7ms) -Completed 200 OK in 35ms (Views: 35.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:47 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (51.6ms) -Completed 200 OK in 52ms (Views: 51.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:48 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.8ms) -Completed 200 OK in 41ms (Views: 40.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:52 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (32.4ms) -Completed 200 OK in 33ms (Views: 32.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:54 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (37.9ms) -Completed 200 OK in 39ms (Views: 38.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 15:59:55 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.7ms) -Completed 200 OK in 41ms (Views: 40.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:30 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (711.4ms) -Completed 200 OK in 714ms (Views: 712.5ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 16:01:30 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 16:01:30 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 16:01:30 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 16:01:30 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 16:01:30 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:32 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (23.4ms) -Completed 200 OK in 24ms (Views: 23.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:33 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (30.2ms) -Completed 200 OK in 31ms (Views: 30.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:34 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (22.6ms) -Completed 200 OK in 23ms (Views: 22.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:35 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.2ms) -Completed 200 OK in 25ms (Views: 24.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:37 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515099697.216854 ********************************************* - Rendered inline template (224.5ms) -Completed 200 OK in 225ms (Views: 224.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:38 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (5.7ms) -Completed 200 OK in 25ms (Views: 24.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:39 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (32.3ms) -Completed 200 OK in 33ms (Views: 32.6ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 16:01:39 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:40 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (46.6ms) -Completed 200 OK in 47ms (Views: 46.8ms) -Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 16:01:40 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:41 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (34.5ms) -Completed 200 OK in 35ms (Views: 34.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:45 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (32.7ms) -Completed 200 OK in 33ms (Views: 33.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:46 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (37.5ms) -Completed 200 OK in 38ms (Views: 37.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:48 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.4ms) -Completed 200 OK in 41ms (Views: 40.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:49 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (45.8ms) -Completed 200 OK in 46ms (Views: 46.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:54 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (26.0ms) -Completed 200 OK in 27ms (Views: 26.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:56 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.6ms) -Completed 200 OK in 25ms (Views: 24.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:01:57 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.1ms) -Completed 200 OK in 26ms (Views: 25.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:38:54 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (744.4ms) -Completed 200 OK in 748ms (Views: 746.0ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 16:38:54 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 16:38:54 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 16:38:54 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 16:38:54 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 16:38:54 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:38:56 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (30.2ms) -Completed 200 OK in 31ms (Views: 30.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:38:57 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (23.7ms) -Completed 200 OK in 24ms (Views: 24.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:38:58 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (22.7ms) -Completed 200 OK in 23ms (Views: 22.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:38:59 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (23.9ms) -Completed 200 OK in 25ms (Views: 24.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:00 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515101941.1815119 ********************************************* - Rendered inline template (230.2ms) -Completed 200 OK in 231ms (Views: 230.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:02 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (6.4ms) -Completed 200 OK in 27ms (Views: 26.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:03 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.1ms) -Completed 200 OK in 26ms (Views: 25.3ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 16:39:03 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:04 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (46.2ms) -Completed 200 OK in 47ms (Views: 46.4ms) -Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 16:39:04 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:05 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.2ms) -Completed 200 OK in 25ms (Views: 24.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:09 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (30.0ms) -Completed 200 OK in 31ms (Views: 30.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:10 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (23.2ms) -Completed 200 OK in 24ms (Views: 23.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:12 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (29.1ms) -Completed 200 OK in 30ms (Views: 29.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:13 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (31.9ms) -Completed 200 OK in 33ms (Views: 32.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:17 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.7ms) -Completed 200 OK in 44ms (Views: 44.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:20 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (23.8ms) -Completed 200 OK in 24ms (Views: 24.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:39:21 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.1ms) -Completed 200 OK in 26ms (Views: 25.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:41:59 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (706.5ms) -Completed 200 OK in 709ms (Views: 707.6ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 16:42:00 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 16:42:00 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 16:42:00 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 16:42:00 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 16:42:00 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:01 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.2ms) -Completed 200 OK in 26ms (Views: 25.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:03 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.1ms) -Completed 200 OK in 25ms (Views: 24.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:04 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.8ms) -Completed 200 OK in 25ms (Views: 25.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:05 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (26.1ms) -Completed 200 OK in 27ms (Views: 26.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:06 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515102126.379314 ********************************************* - Rendered inline template (227.2ms) -Completed 200 OK in 228ms (Views: 227.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:07 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (6.4ms) -Completed 200 OK in 27ms (Views: 26.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:08 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (22.8ms) -Completed 200 OK in 24ms (Views: 23.1ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 16:42:08 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:09 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (46.0ms) -Completed 200 OK in 47ms (Views: 46.3ms) -Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 16:42:09 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:10 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (26.6ms) -Completed 200 OK in 27ms (Views: 26.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:13 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.3ms) -Completed 200 OK in 26ms (Views: 25.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:15 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (23.7ms) -Completed 200 OK in 24ms (Views: 23.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:16 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (27.1ms) -Completed 200 OK in 28ms (Views: 27.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:17 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (24.0ms) -Completed 200 OK in 25ms (Views: 24.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:21 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.5ms) -Completed 200 OK in 42ms (Views: 41.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:23 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (27.1ms) -Completed 200 OK in 28ms (Views: 27.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:42:24 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (23.5ms) -Completed 200 OK in 24ms (Views: 23.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:36 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (3972.1ms) -Completed 200 OK in 3976ms (Views: 3973.7ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 16:46:40 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 16:46:40 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 16:46:40 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 16:46:40 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 16:46:40 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:41 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (32.7ms) -Completed 200 OK in 33ms (Views: 32.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:43 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (66.8ms) -Completed 200 OK in 67ms (Views: 67.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:44 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (36.7ms) -Completed 200 OK in 37ms (Views: 37.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:45 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (52.6ms) -Completed 200 OK in 53ms (Views: 52.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:46 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515102407.209289 ********************************************* - Rendered inline template (475.4ms) -Completed 200 OK in 476ms (Views: 475.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:48 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (64.3ms) -Completed 200 OK in 87ms (Views: 86.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:49 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (29.0ms) -Completed 200 OK in 30ms (Views: 29.2ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 16:46:49 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:50 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (28.8ms) -Completed 200 OK in 29ms (Views: 29.1ms) -Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 16:46:50 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:51 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (63.1ms) -Completed 200 OK in 64ms (Views: 63.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:55 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.0ms) -Completed 200 OK in 42ms (Views: 41.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:56 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.9ms) -Completed 200 OK in 43ms (Views: 42.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:58 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.7ms) -Completed 200 OK in 26ms (Views: 26.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:46:59 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.9ms) -Completed 200 OK in 27ms (Views: 26.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:47:04 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.3ms) -Completed 200 OK in 26ms (Views: 25.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:47:06 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (25.2ms) -Completed 200 OK in 26ms (Views: 25.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:47:07 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (26.8ms) -Completed 200 OK in 27ms (Views: 27.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:32 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (765.8ms) -Completed 200 OK in 768ms (Views: 766.9ms) -Started GET "/assets/jquery-be0b72bcc9b7aaa20a71d9c57e9421eb8972abd5425978b7fcc3ed501cebd2ec.js" for 127.0.0.1 at 2018-01-04 16:50:33 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-01-04 16:50:33 -0500 -Started GET "/assets/jquery_ujs-c9ea3ff9f310916cc3ede4eed4f415c31cc24b8866453c3971aae9ce8fba1b3f.js" for 127.0.0.1 at 2018-01-04 16:50:33 -0500 -Started GET "/assets/application-04eac21128b25939090fd04e538c9793202c48d3c0986355bdb13eec35bb8ced.js" for 127.0.0.1 at 2018-01-04 16:50:33 -0500 -Started GET "/assets/time_cop-525fa55e061a82f3040469a0b2fabae1f22478d24794c56a1d8e3261126955b1.js" for 127.0.0.1 at 2018-01-04 16:50:33 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:34 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (28.5ms) -Completed 200 OK in 29ms (Views: 28.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:35 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (31.4ms) -Completed 200 OK in 32ms (Views: 31.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:36 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (60.4ms) -Completed 200 OK in 61ms (Views: 60.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:37 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.1ms) -Completed 200 OK in 41ms (Views: 40.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:38 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1515102639.173713 ********************************************* - Rendered inline template (257.9ms) -Completed 200 OK in 259ms (Views: 258.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:40 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (11.5ms) -Completed 200 OK in 60ms (Views: 59.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:41 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (55.1ms) -Completed 200 OK in 56ms (Views: 55.4ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-01-04 16:50:41 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:42 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (47.3ms) -Completed 200 OK in 48ms (Views: 47.5ms) -Started GET "/assets/factorial-d538b275d7e2156178ead9c03d070789c0b827723f2332f8674a728c46a23452.js" for 127.0.0.1 at 2018-01-04 16:50:42 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:43 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (87.2ms) -Completed 200 OK in 88ms (Views: 87.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:46 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (56.8ms) -Completed 200 OK in 57ms (Views: 57.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:48 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.8ms) -Completed 200 OK in 40ms (Views: 40.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:49 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (31.6ms) -Completed 200 OK in 32ms (Views: 31.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:50 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (28.6ms) -Completed 200 OK in 29ms (Views: 28.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:54 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (31.4ms) -Completed 200 OK in 32ms (Views: 31.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:56 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (26.3ms) -Completed 200 OK in 27ms (Views: 26.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-01-04 16:50:57 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (29.7ms) -Completed 200 OK in 30ms (Views: 30.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:32 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (6270.8ms) -Completed 200 OK in 6274ms (Views: 6272.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-02-13 15:37:38 -0500 -Started GET "/assets/application-b044f9d6152cf53a8dd815577b520b126ecf172e701819d44d566cfc7c762d25.js" for 127.0.0.1 at 2018-02-13 15:37:38 -0500 -Started GET "/assets/time_cop-97f63d94c86668016515ef46698c61321506fd47149ea9533c0e712bcce832be.js" for 127.0.0.1 at 2018-02-13 15:37:38 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:39 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (35.2ms) -Completed 200 OK in 36ms (Views: 35.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:40 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (59.6ms) -Completed 200 OK in 60ms (Views: 59.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:41 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (63.2ms) -Completed 200 OK in 64ms (Views: 63.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:42 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (75.2ms) -Completed 200 OK in 76ms (Views: 75.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:42 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1518554263.582933 ********************************************* - Rendered inline template (643.5ms) -Completed 200 OK in 644ms (Views: 643.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:44 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (8.5ms) -Completed 200 OK in 49ms (Views: 48.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:44 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (70.2ms) -Completed 200 OK in 71ms (Views: 70.5ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-02-13 15:37:45 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:45 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (78.0ms) -Completed 200 OK in 79ms (Views: 78.4ms) -Started GET "/assets/factorial-34f521ac9122445e4a1f18b495e7bb8bc4b178951451e73487d672303f527893.js" for 127.0.0.1 at 2018-02-13 15:37:45 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:46 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.6ms) -Completed 200 OK in 43ms (Views: 42.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:49 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.0ms) -Completed 200 OK in 39ms (Views: 38.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:50 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.2ms) -Completed 200 OK in 42ms (Views: 41.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:51 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.6ms) -Completed 200 OK in 43ms (Views: 42.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:52 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.1ms) -Completed 200 OK in 41ms (Views: 40.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:56 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.7ms) -Completed 200 OK in 40ms (Views: 40.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:58 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.6ms) -Completed 200 OK in 40ms (Views: 40.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-13 15:37:58 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (59.2ms) -Completed 200 OK in 60ms (Views: 59.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:17 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (6407.1ms) -Completed 200 OK in 6410ms (Views: 6408.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-02-15 13:02:23 -0500 -Started GET "/assets/time_cop-97f63d94c86668016515ef46698c61321506fd47149ea9533c0e712bcce832be.js" for 127.0.0.1 at 2018-02-15 13:02:23 -0500 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-02-15 13:02:23 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:24 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (59.9ms) -Completed 200 OK in 60ms (Views: 60.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:25 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (48.3ms) -Completed 200 OK in 49ms (Views: 48.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:26 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (76.3ms) -Completed 200 OK in 77ms (Views: 76.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:27 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (49.5ms) -Completed 200 OK in 50ms (Views: 49.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:28 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1518717748.931067 ********************************************* - Rendered inline template (835.8ms) -Completed 200 OK in 836ms (Views: 836.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:29 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (4.6ms) -Completed 200 OK in 46ms (Views: 45.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:30 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.1ms) -Completed 200 OK in 44ms (Views: 43.4ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-02-15 13:02:30 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:31 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.6ms) -Completed 200 OK in 42ms (Views: 41.9ms) -Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-02-15 13:02:31 -0500 -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:31 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (47.4ms) -Completed 200 OK in 48ms (Views: 47.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:34 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (48.0ms) -Completed 200 OK in 49ms (Views: 48.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:35 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (37.5ms) -Completed 200 OK in 38ms (Views: 37.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:36 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (37.1ms) -Completed 200 OK in 38ms (Views: 37.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:37 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (37.7ms) -Completed 200 OK in 38ms (Views: 38.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:41 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (51.0ms) -Completed 200 OK in 52ms (Views: 51.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:43 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.5ms) -Completed 200 OK in 39ms (Views: 38.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-02-15 13:02:44 -0500 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.6ms) -Completed 200 OK in 40ms (Views: 39.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:25 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (7065.4ms) -Completed 200 OK in 7069ms (Views: 7066.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 15:41:32 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 15:41:32 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:33 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (79.1ms) -Completed 200 OK in 80ms (Views: 79.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:34 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (46.1ms) -Completed 200 OK in 47ms (Views: 46.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:35 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (44.2ms) -Completed 200 OK in 45ms (Views: 44.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:36 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (50.3ms) -Completed 200 OK in 51ms (Views: 50.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:37 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1521747697.8567848 ********************************************* - Rendered inline template (690.2ms) -Completed 200 OK in 691ms (Views: 690.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:38 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (4.5ms) -Completed 200 OK in 57ms (Views: 56.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:39 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (52.6ms) -Completed 200 OK in 53ms (Views: 52.9ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-22 15:41:39 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:39 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (44.6ms) -Completed 200 OK in 45ms (Views: 44.8ms) -Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-22 15:41:39 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:41 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (56.7ms) -Completed 200 OK in 58ms (Views: 57.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:44 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (46.9ms) -Completed 200 OK in 48ms (Views: 47.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:45 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (44.1ms) -Completed 200 OK in 45ms (Views: 44.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:41:46 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (49.0ms) -Completed 200 OK in 50ms (Views: 49.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:41:46 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (0.0ms) -Completed 200 OK in 0ms (Views: 45.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2016-03-22 15:41:47 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (54.0ms) -Completed 200 OK in 55ms (Views: 54.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2015-03-22 15:42:01 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (3613.1ms) -Completed 200 OK in 3657ms (Views: 60.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2016-03-22 15:42:33 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (0.0ms) -Completed 200 OK in 0ms (Views: 48.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:27 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (650.0ms) -Completed 200 OK in 653ms (Views: 651.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 15:45:27 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 15:45:27 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:47 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (612.1ms) -Completed 200 OK in 614ms (Views: 613.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 15:45:47 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 15:45:47 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:48 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (97.0ms) -Completed 200 OK in 98ms (Views: 97.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:49 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (47.8ms) -Completed 200 OK in 49ms (Views: 48.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:50 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.0ms) -Completed 200 OK in 44ms (Views: 43.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:51 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (45.6ms) -Completed 200 OK in 46ms (Views: 45.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:52 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1521747952.304493 ********************************************* - Rendered inline template (298.4ms) -Completed 200 OK in 299ms (Views: 298.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:52 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (4.0ms) -Completed 200 OK in 46ms (Views: 45.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:53 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (46.2ms) -Completed 200 OK in 47ms (Views: 46.5ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-22 15:45:53 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:54 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.8ms) -Completed 200 OK in 42ms (Views: 42.1ms) -Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-22 15:45:54 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:55 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (44.5ms) -Completed 200 OK in 45ms (Views: 44.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:45:58 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (56.6ms) -Completed 200 OK in 57ms (Views: 56.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:46:01 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.2ms) -Completed 200 OK in 43ms (Views: 42.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:46:02 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.2ms) -Completed 200 OK in 44ms (Views: 43.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:46:03 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.2ms) -Completed 200 OK in 44ms (Views: 43.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-22 15:46:03 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (0.0ms) -Completed 200 OK in 0ms (Views: 56.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2016-03-22 15:46:03 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (46.2ms) -Completed 200 OK in 47ms (Views: 46.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2015-03-22 15:46:18 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (3623.8ms) -Completed 200 OK in 3667ms (Views: 60.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2016-03-22 15:46:49 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (0.0ms) -Completed 200 OK in 0ms (Views: 45.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 15:57:32 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (658.2ms) -Completed 200 OK in 661ms (Views: 659.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 15:57:33 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 15:57:33 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 16:00:09 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (617.4ms) -Completed 200 OK in 620ms (Views: 618.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 16:00:10 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 16:00:10 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 16:03:42 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (626.0ms) -Completed 200 OK in 630ms (Views: 627.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 16:03:43 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 16:03:43 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 16:07:32 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (609.5ms) -Completed 200 OK in 613ms (Views: 610.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 16:07:33 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 16:07:33 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:11:32 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (682.1ms) -Completed 200 OK in 686ms (Views: 683.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:11:32 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:11:32 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:12:31 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (641.5ms) -Completed 200 OK in 646ms (Views: 643.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:12:31 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:12:31 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:19:12 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (606.3ms) -Completed 200 OK in 610ms (Views: 608.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:19:13 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:19:13 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:23:03 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (655.5ms) -Completed 200 OK in 660ms (Views: 657.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:23:04 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:23:04 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:31:49 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (605.1ms) -Completed 200 OK in 609ms (Views: 606.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:31:50 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:31:50 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:34:30 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (531.3ms) -Completed 200 OK in 534ms (Views: 532.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:34:30 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:34:30 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:37:25 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (600.1ms) -Completed 200 OK in 603ms (Views: 601.1ms) -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-22 17:37:26 -0400 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-22 17:37:26 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-22 17:39:55 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (370.1ms) -Completed 200 OK in 375ms (Views: 371.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:30:07 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (382.1ms) -Completed 200 OK in 385ms (Views: 383.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:31:32 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (597.4ms) -Completed 200 OK in 600ms (Views: 598.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:31:32 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:31:32 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:37:11 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (612.5ms) -Completed 200 OK in 616ms (Views: 613.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:37:12 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:37:12 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:44:09 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (591.7ms) -Completed 200 OK in 595ms (Views: 592.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:44:09 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:44:09 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:45:22 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (646.8ms) -Completed 200 OK in 651ms (Views: 647.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:45:22 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:45:22 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:47:31 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (586.3ms) -Completed 200 OK in 590ms (Views: 587.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:47:32 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:47:32 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:50:53 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (577.5ms) -Completed 200 OK in 581ms (Views: 579.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:50:54 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:50:54 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 08:53:23 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (787.1ms) -Completed 200 OK in 791ms (Views: 788.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 08:53:24 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 08:53:24 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:02:32 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (716.6ms) -Completed 200 OK in 720ms (Views: 717.8ms) -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:02:33 -0400 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:02:33 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:10:05 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1483.4ms) -Completed 200 OK in 1487ms (Views: 1484.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:10:06 -0400 -Started GET "/assets/application-941ba97e4e8194486e5ad248cbd91af62f0106da5e38ed2bb8c424fb5706c013.js" for 127.0.0.1 at 2018-03-23 09:10:06 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:27:45 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (734.1ms) -Completed 200 OK in 738ms (Views: 735.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:27:46 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:27:46 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2017-03-23 09:27:53 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (0.0ms) -Completed 200 OK in 0ms (Views: 42.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2016-03-23 09:27:56 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (76.8ms) -Completed 200 OK in 78ms (Views: 77.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2015-03-23 09:32:03 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (2739.4ms) -Completed 200 OK in 2777ms (Views: 46.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2016-03-23 09:32:43 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (0.0ms) -Completed 200 OK in 0ms (Views: 39.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:29:34 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (586.5ms) -Completed 200 OK in 591ms (Views: 588.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:29:35 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:29:35 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:33:24 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (690.2ms) -Completed 200 OK in 694ms (Views: 691.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:33:24 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:33:24 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:37:14 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (692.4ms) -Completed 200 OK in 696ms (Views: 693.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:37:15 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:37:15 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:39:31 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (629.8ms) -Completed 200 OK in 633ms (Views: 631.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:39:32 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:39:32 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:42:07 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (755.1ms) -Completed 200 OK in 761ms (Views: 757.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:42:08 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:42:08 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:42:33 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (589.5ms) -Completed 200 OK in 594ms (Views: 591.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 09:42:33 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 09:42:33 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:42:34 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (44.6ms) -Completed 200 OK in 45ms (Views: 44.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:42:38 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (72.2ms) -Completed 200 OK in 73ms (Views: 72.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:42:40 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (70.0ms) -Completed 200 OK in 71ms (Views: 70.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 09:42:41 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (57.5ms) -Completed 200 OK in 58ms (Views: 57.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:33:27 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (6859.7ms) -Completed 200 OK in 6863ms (Views: 6861.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 11:33:34 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 11:33:34 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:33:45 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (638.4ms) -Completed 200 OK in 642ms (Views: 639.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 11:33:46 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 11:33:46 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:33:47 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (46.3ms) -Completed 200 OK in 47ms (Views: 46.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:33:51 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (57.7ms) -Completed 200 OK in 58ms (Views: 58.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:33:53 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (47.8ms) -Completed 200 OK in 48ms (Views: 48.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:33:54 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (74.4ms) -Completed 200 OK in 75ms (Views: 74.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:12 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (556.4ms) -Completed 200 OK in 560ms (Views: 557.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 11:34:12 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 11:34:12 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:13 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.2ms) -Completed 200 OK in 43ms (Views: 42.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:14 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (61.5ms) -Completed 200 OK in 62ms (Views: 61.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:15 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (65.4ms) -Completed 200 OK in 66ms (Views: 65.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:16 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (57.4ms) -Completed 200 OK in 58ms (Views: 57.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:17 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1521819258.640631 ********************************************* - Rendered inline template (887.9ms) -Completed 200 OK in 889ms (Views: 888.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:19 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (2.5ms) -Completed 200 OK in 110ms (Views: 109.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:20 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.8ms) -Completed 200 OK in 41ms (Views: 41.1ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-23 11:34:20 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:21 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (45.0ms) -Completed 200 OK in 46ms (Views: 45.3ms) -Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-23 11:34:21 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:22 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (36.3ms) -Completed 200 OK in 37ms (Views: 36.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:25 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (50.2ms) -Completed 200 OK in 51ms (Views: 50.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:28 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.5ms) -Completed 200 OK in 41ms (Views: 40.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:29 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.3ms) -Completed 200 OK in 40ms (Views: 39.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:31 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.4ms) -Completed 200 OK in 41ms (Views: 40.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:32 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (51.2ms) -Completed 200 OK in 52ms (Views: 51.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:36 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.9ms) -Completed 200 OK in 43ms (Views: 42.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:38 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.1ms) -Completed 200 OK in 42ms (Views: 41.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:34:39 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.4ms) -Completed 200 OK in 42ms (Views: 41.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:31 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (548.1ms) -Completed 200 OK in 551ms (Views: 549.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 11:37:32 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 11:37:32 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:33 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (61.5ms) -Completed 200 OK in 62ms (Views: 61.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:34 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (44.0ms) -Completed 200 OK in 45ms (Views: 44.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:35 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (76.7ms) -Completed 200 OK in 77ms (Views: 77.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:35 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (62.5ms) -Completed 200 OK in 64ms (Views: 62.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:36 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1521819456.811229 ********************************************* - Rendered inline template (302.9ms) -Completed 200 OK in 304ms (Views: 303.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:37 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.6ms) -Completed 200 OK in 40ms (Views: 40.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:38 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.6ms) -Completed 200 OK in 43ms (Views: 42.9ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-23 11:37:38 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:38 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (50.7ms) -Completed 200 OK in 51ms (Views: 50.9ms) -Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-23 11:37:38 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:39 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.3ms) -Completed 200 OK in 40ms (Views: 39.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:42 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.0ms) -Completed 200 OK in 43ms (Views: 42.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:45 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.0ms) -Completed 200 OK in 41ms (Views: 40.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:46 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.9ms) -Completed 200 OK in 45ms (Views: 44.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:47 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (54.5ms) -Completed 200 OK in 55ms (Views: 54.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:48 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.2ms) -Completed 200 OK in 41ms (Views: 40.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:52 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.0ms) -Completed 200 OK in 43ms (Views: 42.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:53 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (50.1ms) -Completed 200 OK in 51ms (Views: 50.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 11:37:54 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.9ms) -Completed 200 OK in 41ms (Views: 40.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:01 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (560.6ms) -Completed 200 OK in 563ms (Views: 561.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 13:54:02 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 13:54:02 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:03 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (45.2ms) -Completed 200 OK in 46ms (Views: 45.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:04 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (64.4ms) -Completed 200 OK in 65ms (Views: 64.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:05 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (59.2ms) -Completed 200 OK in 60ms (Views: 59.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:05 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (50.7ms) -Completed 200 OK in 51ms (Views: 50.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:06 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1521827646.859643 ********************************************* - Rendered inline template (333.4ms) -Completed 200 OK in 334ms (Views: 333.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:07 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.9ms) -Completed 200 OK in 50ms (Views: 49.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:08 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (69.4ms) -Completed 200 OK in 70ms (Views: 69.7ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-23 13:54:08 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:08 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (61.2ms) -Completed 200 OK in 62ms (Views: 61.5ms) -Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-23 13:54:09 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:09 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.9ms) -Completed 200 OK in 40ms (Views: 39.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:12 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.0ms) -Completed 200 OK in 42ms (Views: 41.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:15 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (45.0ms) -Completed 200 OK in 46ms (Views: 45.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:16 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (46.6ms) -Completed 200 OK in 47ms (Views: 46.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:17 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.2ms) -Completed 200 OK in 43ms (Views: 42.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:18 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.0ms) -Completed 200 OK in 42ms (Views: 41.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:22 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.6ms) -Completed 200 OK in 42ms (Views: 41.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:24 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.7ms) -Completed 200 OK in 44ms (Views: 43.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:54:25 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (60.6ms) -Completed 200 OK in 61ms (Views: 60.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:56:47 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (660.8ms) -Completed 200 OK in 664ms (Views: 661.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 13:56:48 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 13:56:48 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:58:45 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (630.0ms) -Completed 200 OK in 633ms (Views: 631.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 13:58:46 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 13:58:46 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:58:47 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (68.3ms) -Completed 200 OK in 69ms (Views: 68.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:58:51 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.9ms) -Completed 200 OK in 44ms (Views: 43.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:58:53 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (79.1ms) -Completed 200 OK in 80ms (Views: 79.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 13:58:53 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (61.2ms) -Completed 200 OK in 62ms (Views: 61.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:04:23 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (564.9ms) -Completed 200 OK in 568ms (Views: 566.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 14:04:23 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 14:04:23 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:04:24 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (97.1ms) -Completed 200 OK in 98ms (Views: 97.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:04:28 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (50.5ms) -Completed 200 OK in 51ms (Views: 50.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:04:30 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (77.4ms) -Completed 200 OK in 78ms (Views: 77.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:04:31 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (68.2ms) -Completed 200 OK in 69ms (Views: 68.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:02 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (545.1ms) -Completed 200 OK in 549ms (Views: 546.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 14:06:03 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 14:06:03 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:04 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (67.2ms) -Completed 200 OK in 68ms (Views: 67.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:08 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (49.4ms) -Completed 200 OK in 50ms (Views: 49.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:10 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (69.0ms) -Completed 200 OK in 70ms (Views: 69.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:11 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (82.9ms) -Completed 200 OK in 84ms (Views: 83.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:21 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (584.2ms) -Completed 200 OK in 587ms (Views: 585.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 14:06:22 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 14:06:22 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:23 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (64.6ms) -Completed 200 OK in 66ms (Views: 64.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:27 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (50.4ms) -Completed 200 OK in 51ms (Views: 50.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:29 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (79.8ms) -Completed 200 OK in 81ms (Views: 80.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:06:30 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (74.6ms) -Completed 200 OK in 76ms (Views: 74.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:07:46 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (550.7ms) -Completed 200 OK in 554ms (Views: 551.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 14:07:47 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 14:07:47 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:07:48 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (64.1ms) -Completed 200 OK in 65ms (Views: 64.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:07:52 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.6ms) -Completed 200 OK in 43ms (Views: 42.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:07:54 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (78.4ms) -Completed 200 OK in 79ms (Views: 78.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:07:55 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (73.9ms) -Completed 200 OK in 75ms (Views: 74.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:08:03 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (598.3ms) -Completed 200 OK in 601ms (Views: 599.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 14:08:04 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 14:08:04 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:08:05 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (71.9ms) -Completed 200 OK in 73ms (Views: 72.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:08:09 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (51.8ms) -Completed 200 OK in 53ms (Views: 52.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:08:11 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (81.1ms) -Completed 200 OK in 82ms (Views: 81.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 14:08:12 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (63.8ms) -Completed 200 OK in 65ms (Views: 64.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:20 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (612.1ms) -Completed 200 OK in 615ms (Views: 613.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 17:13:20 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 17:13:20 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:21 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (59.5ms) -Completed 200 OK in 60ms (Views: 59.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:22 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (45.2ms) -Completed 200 OK in 46ms (Views: 45.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:23 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (94.6ms) -Completed 200 OK in 96ms (Views: 95.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:24 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (67.5ms) -Completed 200 OK in 69ms (Views: 67.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:25 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1521839606.193843 ********************************************* - Rendered inline template (328.6ms) -Completed 200 OK in 329ms (Views: 328.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:26 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.7ms) -Completed 200 OK in 42ms (Views: 42.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:27 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.6ms) -Completed 200 OK in 44ms (Views: 43.9ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-23 17:13:27 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:28 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (57.5ms) -Completed 200 OK in 58ms (Views: 57.7ms) -Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-23 17:13:28 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:29 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (47.9ms) -Completed 200 OK in 49ms (Views: 48.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:32 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (48.1ms) -Completed 200 OK in 49ms (Views: 48.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:35 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (46.7ms) -Completed 200 OK in 47ms (Views: 47.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:37 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.5ms) -Completed 200 OK in 43ms (Views: 42.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:38 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (54.5ms) -Completed 200 OK in 55ms (Views: 54.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:39 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (50.2ms) -Completed 200 OK in 51ms (Views: 50.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:43 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.9ms) -Completed 200 OK in 44ms (Views: 44.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:45 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (45.6ms) -Completed 200 OK in 46ms (Views: 45.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:13:46 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.8ms) -Completed 200 OK in 44ms (Views: 43.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:18 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (568.0ms) -Completed 200 OK in 571ms (Views: 569.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 17:16:19 -0400 -Started GET "/assets/application-4868420ca35b04cc7c04de122ccd7be48c56670702283e8d3894cd0e52fd4dec.js" for 127.0.0.1 at 2018-03-23 17:16:19 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:20 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (60.4ms) -Completed 200 OK in 61ms (Views: 60.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:21 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (46.1ms) -Completed 200 OK in 47ms (Views: 46.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:21 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (75.4ms) -Completed 200 OK in 76ms (Views: 75.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:22 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (61.8ms) -Completed 200 OK in 63ms (Views: 62.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:23 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1521839783.774038 ********************************************* - Rendered inline template (307.9ms) -Completed 200 OK in 309ms (Views: 308.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:24 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.8ms) -Completed 200 OK in 41ms (Views: 40.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:25 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.5ms) -Completed 200 OK in 41ms (Views: 40.8ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-23 17:16:25 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:25 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (50.2ms) -Completed 200 OK in 51ms (Views: 50.5ms) -Started GET "/assets/factorial-4e2f1372db9f459c71feac763d1d9a1f9e0997d8a5e2526d72f92ae2e04ada70.js" for 127.0.0.1 at 2018-03-23 17:16:25 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:26 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.7ms) -Completed 200 OK in 40ms (Views: 39.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:29 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (45.7ms) -Completed 200 OK in 46ms (Views: 45.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:32 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.2ms) -Completed 200 OK in 39ms (Views: 38.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:33 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.4ms) -Completed 200 OK in 44ms (Views: 43.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:34 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (50.8ms) -Completed 200 OK in 51ms (Views: 51.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:35 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.7ms) -Completed 200 OK in 42ms (Views: 41.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:39 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.1ms) -Completed 200 OK in 40ms (Views: 39.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:40 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (48.9ms) -Completed 200 OK in 50ms (Views: 49.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:16:41 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.0ms) -Completed 200 OK in 41ms (Views: 40.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:13 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (6450.7ms) -Completed 200 OK in 6454ms (Views: 6452.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-03-23 17:18:19 -0400 -Started GET "/assets/application-1e95491ffeab90dbc00f536321000d09d0083efe92f45ed73760c684761259b1.js" for 127.0.0.1 at 2018-03-23 17:18:19 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:20 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (55.1ms) -Completed 200 OK in 56ms (Views: 55.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:21 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (54.4ms) -Completed 200 OK in 55ms (Views: 54.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:22 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (78.4ms) -Completed 200 OK in 79ms (Views: 78.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:23 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (47.6ms) -Completed 200 OK in 48ms (Views: 47.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:24 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1521839904.814492 ********************************************* - Rendered inline template (741.3ms) -Completed 200 OK in 742ms (Views: 741.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:25 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.3ms) -Completed 200 OK in 36ms (Views: 35.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:26 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (37.2ms) -Completed 200 OK in 38ms (Views: 37.5ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-03-23 17:18:26 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:26 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (51.6ms) -Completed 200 OK in 52ms (Views: 51.9ms) -Started GET "/assets/factorial-ecc91333317ec2a4b6e09593908058ecc55cf7408bc80d2158f55e49f518f879.js" for 127.0.0.1 at 2018-03-23 17:18:27 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:27 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (49.8ms) -Completed 200 OK in 50ms (Views: 50.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:30 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (35.4ms) -Completed 200 OK in 36ms (Views: 35.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:33 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (50.5ms) -Completed 200 OK in 51ms (Views: 50.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:34 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.2ms) -Completed 200 OK in 41ms (Views: 40.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:35 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.3ms) -Completed 200 OK in 40ms (Views: 39.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:36 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.8ms) -Completed 200 OK in 41ms (Views: 41.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:40 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.7ms) -Completed 200 OK in 40ms (Views: 40.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:42 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.9ms) -Completed 200 OK in 42ms (Views: 41.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-03-23 17:18:42 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.3ms) -Completed 200 OK in 40ms (Views: 39.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:16 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (660.2ms) -Completed 200 OK in 663ms (Views: 661.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-04-30 19:14:17 -0400 -Started GET "/assets/application-1e95491ffeab90dbc00f536321000d09d0083efe92f45ed73760c684761259b1.js" for 127.0.0.1 at 2018-04-30 19:14:17 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:18 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (35.1ms) -Completed 200 OK in 36ms (Views: 35.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:18 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (37.6ms) -Completed 200 OK in 38ms (Views: 37.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:19 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (35.4ms) -Completed 200 OK in 36ms (Views: 35.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:20 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.3ms) -Completed 200 OK in 40ms (Views: 39.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:21 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1525130061.3826911 ********************************************* - Rendered inline template (301.2ms) -Completed 200 OK in 302ms (Views: 301.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:21 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.9ms) -Completed 200 OK in 42ms (Views: 41.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:22 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.5ms) -Completed 200 OK in 40ms (Views: 39.7ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-04-30 19:14:22 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:23 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.8ms) -Completed 200 OK in 40ms (Views: 40.0ms) -Started GET "/assets/factorial-ecc91333317ec2a4b6e09593908058ecc55cf7408bc80d2158f55e49f518f879.js" for 127.0.0.1 at 2018-04-30 19:14:23 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:24 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.9ms) -Completed 200 OK in 42ms (Views: 41.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:27 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.4ms) -Completed 200 OK in 44ms (Views: 43.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:30 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.4ms) -Completed 200 OK in 43ms (Views: 42.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:31 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (63.9ms) -Completed 200 OK in 65ms (Views: 64.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:32 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (52.3ms) -Completed 200 OK in 53ms (Views: 52.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:33 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (59.3ms) -Completed 200 OK in 60ms (Views: 59.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:36 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.1ms) -Completed 200 OK in 42ms (Views: 41.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:38 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.2ms) -Completed 200 OK in 39ms (Views: 38.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:14:39 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.0ms) -Completed 200 OK in 40ms (Views: 39.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:16:08 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1525130169.2828858 ********************************************* - Rendered inline template (797.8ms) -Completed 200 OK in 801ms (Views: 799.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-04-30 19:16:09 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-04-30 19:17:58 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1525130280.372287 ********************************************* - Rendered inline template (2032.6ms) -Completed 500 Internal Server Error in 2035ms -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:33 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (728.2ms) -Completed 200 OK in 731ms (Views: 729.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-05-05 16:22:34 -0400 -Started GET "/assets/application-1e95491ffeab90dbc00f536321000d09d0083efe92f45ed73760c684761259b1.js" for 127.0.0.1 at 2018-05-05 16:22:34 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:35 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.5ms) -Completed 200 OK in 39ms (Views: 38.8ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:36 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (35.6ms) -Completed 200 OK in 36ms (Views: 35.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:36 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.0ms) -Completed 200 OK in 39ms (Views: 38.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:37 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (35.8ms) -Completed 200 OK in 37ms (Views: 36.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:38 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1525551758.687947 ********************************************* - Rendered inline template (303.1ms) -Completed 200 OK in 304ms (Views: 303.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:39 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.6ms) -Completed 200 OK in 42ms (Views: 41.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:39 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (37.6ms) -Completed 200 OK in 38ms (Views: 37.9ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-05-05 16:22:40 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:40 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.8ms) -Completed 200 OK in 40ms (Views: 40.1ms) -Started GET "/assets/factorial-ecc91333317ec2a4b6e09593908058ecc55cf7408bc80d2158f55e49f518f879.js" for 127.0.0.1 at 2018-05-05 16:22:40 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:41 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.5ms) -Completed 200 OK in 39ms (Views: 38.7ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:44 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.2ms) -Completed 200 OK in 42ms (Views: 41.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:47 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (47.0ms) -Completed 200 OK in 48ms (Views: 47.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:48 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (58.6ms) -Completed 200 OK in 59ms (Views: 58.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:49 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (49.4ms) -Completed 200 OK in 50ms (Views: 49.6ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:50 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (59.2ms) -Completed 200 OK in 60ms (Views: 59.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:54 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (37.8ms) -Completed 200 OK in 38ms (Views: 38.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:55 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (36.8ms) -Completed 200 OK in 37ms (Views: 37.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-05 16:22:56 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.1ms) -Completed 200 OK in 41ms (Views: 40.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:44 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (6371.8ms) -Completed 200 OK in 6377ms (Views: 6374.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-05-10 18:01:50 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-05-10 18:01:50 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:51 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (53.7ms) -Completed 200 OK in 55ms (Views: 54.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:52 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.1ms) -Completed 200 OK in 41ms (Views: 40.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:53 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.7ms) -Completed 200 OK in 41ms (Views: 40.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:54 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (45.6ms) -Completed 200 OK in 46ms (Views: 46.0ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:54 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1525989715.672835 ********************************************* - Rendered inline template (691.5ms) -Completed 200 OK in 692ms (Views: 691.9ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:56 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.9ms) -Completed 200 OK in 58ms (Views: 57.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:56 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.6ms) -Completed 200 OK in 40ms (Views: 39.8ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2018-05-10 18:01:57 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:57 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (45.2ms) -Completed 200 OK in 46ms (Views: 45.4ms) -Started GET "/assets/factorial-34b8d74ce0b1a03fe2b83c838defc4e19ef1d06fb798f500cf9ba4c7b3688f50.js" for 127.0.0.1 at 2018-05-10 18:01:57 -0400 -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:01:58 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.9ms) -Completed 200 OK in 41ms (Views: 40.2ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:01 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.8ms) -Completed 200 OK in 42ms (Views: 42.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:04 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (49.2ms) -Completed 200 OK in 50ms (Views: 49.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:05 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.2ms) -Completed 200 OK in 41ms (Views: 40.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:06 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (52.2ms) -Completed 200 OK in 53ms (Views: 52.4ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:07 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.9ms) -Completed 200 OK in 40ms (Views: 39.1ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:11 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.2ms) -Completed 200 OK in 44ms (Views: 43.5ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:12 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (53.0ms) -Completed 200 OK in 54ms (Views: 53.3ms) -Started GET "/react_test/1" for 127.0.0.1 at 2018-05-10 18:02:13 -0400 -Processing by ReactTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.0ms) -Completed 200 OK in 41ms (Views: 40.2ms) -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 15:41:14 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (851.8ms) -Completed 200 OK in 875ms (Views: 855.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 15:41:15 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 15:41:15 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 15:44:49 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (585.7ms) -Completed 200 OK in 600ms (Views: 588.6ms) -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 15:44:49 -0400 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 15:44:49 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 15:45:15 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (581.1ms) -Completed 200 OK in 595ms (Views: 584.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 15:45:16 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 15:45:16 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 15:58:01 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (588.4ms) -Completed 200 OK in 601ms (Views: 591.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 15:58:01 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 15:58:01 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:03:56 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (657.5ms) -Completed 200 OK in 670ms (Views: 660.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:03:56 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:03:56 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:33:06 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (608.8ms) -Completed 200 OK in 622ms (Views: 612.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:33:07 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:33:07 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:33:36 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (608.8ms) -Completed 200 OK in 622ms (Views: 611.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:33:37 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:33:37 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:33:59 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (593.2ms) -Completed 200 OK in 605ms (Views: 595.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:34:00 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:34:00 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:36:26 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (65.2ms) -Completed 200 OK in 75ms (Views: 65.6ms) -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:36:35 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (618.6ms) -Completed 200 OK in 632ms (Views: 621.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:36:36 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:36:36 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:42:00 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (71.5ms) -Completed 200 OK in 90ms (Views: 72.0ms) -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:42:10 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (584.0ms) -Completed 200 OK in 597ms (Views: 587.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:42:11 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:42:11 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:45:17 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (89.6ms) -Completed 200 OK in 102ms (Views: 90.1ms) -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 16:45:32 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (569.5ms) -Completed 200 OK in 582ms (Views: 572.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 16:45:32 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 16:45:32 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 21:50:50 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (183.6ms) -Completed 200 OK in 202ms (Views: 184.7ms) -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 21:50:59 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (756.5ms) -Completed 200 OK in 768ms (Views: 759.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 21:51:00 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 21:51:00 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 21:52:11 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (778.0ms) -Completed 200 OK in 790ms (Views: 781.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 21:52:12 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 21:52:12 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 21:54:03 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (747.2ms) -Completed 200 OK in 759ms (Views: 750.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 21:54:04 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 21:54:04 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:00:55 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (60.5ms) -Completed 200 OK in 68ms (Views: 60.9ms) -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:01:05 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (734.5ms) -Completed 200 OK in 746ms (Views: 737.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:01:06 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:01:06 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:01:37 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (744.5ms) -Completed 200 OK in 755ms (Views: 747.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:01:37 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:01:37 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:01:54 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (651.1ms) -Completed 200 OK in 668ms (Views: 656.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:01:54 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:01:54 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:04:21 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (648.4ms) -Completed 200 OK in 661ms (Views: 650.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:04:21 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:04:21 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:17:31 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (693.9ms) -Completed 200 OK in 708ms (Views: 697.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:17:32 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:17:32 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:17:57 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (658.0ms) -Completed 200 OK in 676ms (Views: 662.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:17:58 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:17:58 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:18:24 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (644.4ms) -Completed 200 OK in 656ms (Views: 647.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:18:24 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:18:24 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:19:25 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (632.6ms) -Completed 200 OK in 647ms (Views: 636.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:19:25 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:19:25 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-13 22:22:07 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (649.1ms) -Completed 200 OK in 664ms (Views: 653.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-13 22:22:08 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-13 22:22:08 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:43:32 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (655.4ms) -Completed 200 OK in 669ms (Views: 658.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:43:33 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:43:33 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:45:14 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (705.7ms) -Completed 200 OK in 723ms (Views: 709.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:45:15 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:45:15 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:46:35 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (626.6ms) -Completed 200 OK in 640ms (Views: 629.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:46:36 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:46:36 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:49:35 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (638.2ms) -Completed 200 OK in 651ms (Views: 641.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:49:36 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:49:36 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:57:47 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (84.3ms) -Completed 200 OK in 97ms (Views: 84.8ms) -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:58:06 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (763.7ms) -Completed 200 OK in 794ms (Views: 767.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:58:07 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:58:07 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:58:53 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (624.6ms) -Completed 200 OK in 642ms (Views: 628.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:58:54 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:58:54 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 09:59:25 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (713.7ms) -Completed 200 OK in 728ms (Views: 717.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 09:59:26 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 09:59:26 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:01:43 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (49.3ms) -Completed 200 OK in 56ms (Views: 49.7ms) -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:06:18 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (633.3ms) -Completed 200 OK in 647ms (Views: 637.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:06:19 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:06:19 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:08:18 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (633.7ms) -Completed 200 OK in 645ms (Views: 636.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:08:18 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:08:18 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:08:51 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (637.4ms) -Completed 200 OK in 654ms (Views: 641.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:08:51 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:08:51 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:11:20 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (629.1ms) -Completed 200 OK in 647ms (Views: 632.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:11:21 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:11:21 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:12:44 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (630.0ms) -Completed 200 OK in 647ms (Views: 634.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:12:45 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:12:45 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:14:33 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (773.4ms) -Completed 200 OK in 800ms (Views: 777.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:14:33 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:14:33 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:18:08 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (760.1ms) -Completed 200 OK in 785ms (Views: 764.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:18:09 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:18:09 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:19:57 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (629.6ms) -Completed 200 OK in 655ms (Views: 643.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:19:57 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:19:57 -0400 -Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:31:25 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} - Rendering inline template - Rendered inline template (642.5ms) -Completed 200 OK in 654ms (Views: 645.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:31:26 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:31:26 -0400 -Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:34:42 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} - Rendering inline template - Rendered inline template (767.5ms) -Completed 200 OK in 780ms (Views: 770.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:34:43 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:34:43 -0400 -Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:35:54 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} - Rendering inline template - Rendered inline template (642.2ms) -Completed 200 OK in 654ms (Views: 645.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:35:55 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:35:55 -0400 -Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:38:38 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} - Rendering inline template - Rendered inline template (728.1ms) -Completed 200 OK in 742ms (Views: 730.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:38:38 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:38:38 -0400 -Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:43:08 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} - Rendering inline template - Rendered inline template (685.2ms) -Completed 200 OK in 700ms (Views: 688.3ms) -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:43:08 -0400 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:43:08 -0400 -Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:44:14 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} - Rendering inline template - Rendered inline template (602.4ms) -Completed 200 OK in 613ms (Views: 604.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:44:14 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:44:14 -0400 -Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:44:45 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} - Rendering inline template - Rendered inline template (609.0ms) -Completed 200 OK in 627ms (Views: 616.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:44:45 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:44:45 -0400 -Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:45:17 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} - Rendering inline template - Rendered inline template (680.4ms) -Completed 200 OK in 691ms (Views: 683.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:45:18 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:45:18 -0400 -Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:46:26 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} - Rendering inline template - Rendered inline template (576.0ms) -Completed 200 OK in 596ms (Views: 578.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:46:27 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:46:27 -0400 -Started GET "/hyper_spec_test/15af6c19c0f7e646db884382497a0afae77b840e" for 127.0.0.1 at 2018-06-14 10:48:08 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15af6c19c0f7e646db884382497a0afae77b840e"} - Rendering inline template - Rendered inline template (614.5ms) -Completed 200 OK in 626ms (Views: 618.2ms) -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:48:09 -0400 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:48:09 -0400 -Started GET "/hyper_spec_test/bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f" for 127.0.0.1 at 2018-06-14 10:48:41 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"bf21a9e8fbc5a3846fb05b4fa0859e0917b2202f"} - Rendering inline template - Rendered inline template (600.1ms) -Completed 200 OK in 618ms (Views: 603.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-06-14 10:48:41 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-06-14 10:48:41 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:31:42 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (831.7ms) -Completed 200 OK in 836ms (Views: 833.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-10-04 08:31:43 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-10-04 08:31:43 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:40:21 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (769.5ms) -Completed 200 OK in 773ms (Views: 770.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-10-04 08:40:22 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-10-04 08:40:22 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:41:22 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (621.2ms) -Completed 200 OK in 624ms (Views: 622.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-10-04 08:41:23 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-10-04 08:41:23 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:41:54 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (617.5ms) -Completed 200 OK in 620ms (Views: 618.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-10-04 08:41:54 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-10-04 08:41:54 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:42:27 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (651.8ms) -Completed 200 OK in 655ms (Views: 653.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-10-04 08:42:28 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-10-04 08:42:28 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:45:23 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (83.3ms) -Completed 200 OK in 85ms (Views: 83.7ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2018-10-04 08:46:41 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (616.5ms) -Completed 200 OK in 620ms (Views: 617.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2018-10-04 08:46:42 -0400 -Started GET "/assets/application-cdc43ccd45b955d5fc5791185163c4a1b21991216ec4b77884b0ab4f41c4ae65.js" for 127.0.0.1 at 2018-10-04 08:46:42 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 08:59:23 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (8571.6ms) -Completed 200 OK in 8575ms (Views: 8572.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 08:59:31 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 08:59:31 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:00:06 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (818.4ms) -Completed 200 OK in 823ms (Views: 820.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:00:07 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:00:07 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:03:25 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (970.8ms) -Completed 200 OK in 979ms (Views: 974.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:03:26 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:03:26 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:06:59 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (989.8ms) -Completed 200 OK in 992ms (Views: 990.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:07:00 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:07:00 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:12:06 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (852.8ms) -Completed 200 OK in 856ms (Views: 854.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:12:07 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:12:07 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:13:45 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (947.3ms) -Completed 200 OK in 955ms (Views: 950.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:13:46 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:13:46 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:17:15 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1033.7ms) -Completed 200 OK in 1038ms (Views: 1035.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:17:16 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:17:16 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:20:40 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1039.1ms) -Completed 200 OK in 1044ms (Views: 1041.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:20:42 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:20:42 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:22:42 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (965.9ms) -Completed 200 OK in 971ms (Views: 967.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:22:43 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:22:43 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:24:13 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1279.7ms) -Completed 200 OK in 1285ms (Views: 1282.1ms) -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:24:15 -0400 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:24:15 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:26:58 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (99.2ms) -Completed 200 OK in 100ms (Views: 99.5ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:27:35 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1009.7ms) -Completed 200 OK in 1015ms (Views: 1011.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:27:37 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:27:37 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:40:05 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1103.3ms) -Completed 200 OK in 1123ms (Views: 1105.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:40:06 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:40:06 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:43:42 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (944.2ms) -Completed 200 OK in 962ms (Views: 946.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:43:43 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:43:43 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:52:36 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1110.9ms) -Completed 200 OK in 1129ms (Views: 1113.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:52:37 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:52:37 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 09:52:48 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (110.5ms) -Completed 200 OK in 126ms (Views: 111.1ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 09:52:58 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (50.2ms) -Completed 200 OK in 62ms (Views: 50.6ms) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 09:52:59 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (66.0ms) -Completed 200 OK in 78ms (Views: 66.3ms) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 09:53:00 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (60.6ms) -Completed 200 OK in 75ms (Views: 61.0ms) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 09:53:01 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1589637183.177838 ********************************************* - Rendered inline template (1673.2ms) -Completed 200 OK in 1686ms (Views: 1673.7ms) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 09:53:03 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.8ms) -Completed 200 OK in 66ms (Views: 52.5ms) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 09:53:04 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (113.4ms) -Completed 200 OK in 129ms (Views: 114.0ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 09:53:04 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:55:01 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (998.8ms) -Completed 200 OK in 1002ms (Views: 1000.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:55:02 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:55:02 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 09:55:03 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (46.3ms) -Completed 200 OK in 47ms (Views: 46.6ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 09:55:05 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (86.0ms) -Completed 200 OK in 87ms (Views: 86.3ms) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 09:55:05 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (79.6ms) -Completed 200 OK in 81ms (Views: 80.4ms) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 09:55:06 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (84.4ms) -Completed 200 OK in 86ms (Views: 84.8ms) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 09:55:07 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1589637308.4272552 ********************************************* - Rendered inline template (515.4ms) -Completed 200 OK in 516ms (Views: 515.7ms) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 09:55:09 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (2.1ms) -Completed 200 OK in 59ms (Views: 58.5ms) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 09:55:10 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (101.0ms) -Completed 200 OK in 112ms (Views: 111.5ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 09:55:10 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 09:55:27 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (991.9ms) -Completed 200 OK in 996ms (Views: 993.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 09:55:28 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 09:55:28 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 09:55:29 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (154.4ms) -Completed 200 OK in 157ms (Views: 155.1ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 09:55:30 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (142.8ms) -Completed 200 OK in 144ms (Views: 143.2ms) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 09:55:31 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (56.8ms) -Completed 200 OK in 58ms (Views: 57.1ms) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 09:55:32 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (47.6ms) -Completed 200 OK in 48ms (Views: 47.9ms) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 09:55:33 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1589637333.9826949 ********************************************* - Rendered inline template (430.6ms) -Completed 200 OK in 431ms (Views: 430.9ms) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 09:55:34 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.5ms) -Completed 200 OK in 52ms (Views: 51.6ms) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 09:55:35 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (178.3ms) -Completed 200 OK in 179ms (Views: 178.6ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 09:55:35 -0400 -Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2020-05-16 09:55:36 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"9"} - Rendering inline template - Rendered inline template (88.4ms) -Completed 200 OK in 90ms (Views: 88.9ms) -Started GET "/assets/factorial-c2ada5ac6c789cc5b77be5363587b689defea94396a5b319895f7e74817b8532.js" for 127.0.0.1 at 2020-05-16 09:55:36 -0400 -Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2020-05-16 09:55:37 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"10"} - Rendering inline template - Rendered inline template (53.2ms) -Completed 200 OK in 54ms (Views: 53.6ms) -Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2020-05-16 09:55:40 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"11"} - Rendering inline template - Rendered inline template (53.4ms) -Completed 200 OK in 54ms (Views: 53.6ms) -Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2020-05-16 09:55:41 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"12"} - Rendering inline template - Rendered inline template (51.4ms) -Completed 200 OK in 52ms (Views: 51.7ms) -Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2020-05-16 09:55:52 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"13"} - Rendering inline template - Rendered inline template (52.3ms) -Completed 200 OK in 53ms (Views: 52.7ms) -Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2020-05-16 09:56:03 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"14"} - Rendering inline template - Rendered inline template (45.6ms) -Completed 200 OK in 46ms (Views: 45.9ms) -Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2020-05-16 09:56:04 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15"} - Rendering inline template - Rendered inline template (44.7ms) -Completed 200 OK in 46ms (Views: 45.0ms) -Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2020-05-16 09:56:08 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"16"} - Rendering inline template - Rendered inline template (160.9ms) -Completed 200 OK in 162ms (Views: 161.2ms) -Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2020-05-16 09:56:10 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"17"} - Rendering inline template - Rendered inline template (46.9ms) -Completed 200 OK in 48ms (Views: 47.2ms) -Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2020-05-16 09:56:11 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"18"} - Rendering inline template - Rendered inline template (68.4ms) -Completed 200 OK in 69ms (Views: 68.8ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:00:19 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1046.0ms) -Completed 200 OK in 1050ms (Views: 1047.1ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:00:20 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:00:20 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:03:08 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1251.8ms) -Completed 200 OK in 1255ms (Views: 1253.1ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:03:10 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:03:10 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:04:24 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1203.1ms) -Completed 200 OK in 1208ms (Views: 1205.0ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:04:26 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:04:26 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:04:38 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (912.6ms) -Completed 200 OK in 917ms (Views: 914.3ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:04:39 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:04:39 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:04:54 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (970.7ms) -Completed 200 OK in 975ms (Views: 972.2ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:04:55 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:04:55 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:05:52 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (933.0ms) -Completed 200 OK in 937ms (Views: 934.5ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:05:53 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:05:53 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:06:23 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1069.5ms) -Completed 200 OK in 1072ms (Views: 1070.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:06:24 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:06:24 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:08:21 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (969.8ms) -Completed 200 OK in 973ms (Views: 971.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:08:23 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:08:23 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:08:54 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (944.5ms) -Completed 200 OK in 948ms (Views: 945.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:08:54 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:08:54 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 10:08:56 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (55.5ms) -Completed 200 OK in 56ms (Views: 55.9ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 10:08:57 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (83.6ms) -Completed 200 OK in 84ms (Views: 83.9ms) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 10:08:57 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (41.4ms) -Completed 200 OK in 42ms (Views: 41.6ms) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 10:08:58 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (41.1ms) -Completed 200 OK in 42ms (Views: 41.4ms) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 10:08:59 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1589638139.817896 ********************************************* - Rendered inline template (419.1ms) -Completed 200 OK in 420ms (Views: 419.4ms) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 10:09:00 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.5ms) -Completed 200 OK in 63ms (Views: 62.5ms) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 10:09:01 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (62.5ms) -Completed 200 OK in 63ms (Views: 62.9ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:09:01 -0400 -Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2020-05-16 10:09:01 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"9"} - Rendering inline template - Rendered inline template (71.8ms) -Completed 200 OK in 73ms (Views: 72.1ms) -Started GET "/assets/factorial-c2ada5ac6c789cc5b77be5363587b689defea94396a5b319895f7e74817b8532.js" for 127.0.0.1 at 2020-05-16 10:09:02 -0400 -Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2020-05-16 10:09:03 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"10"} - Rendering inline template - Rendered inline template (57.9ms) -Completed 200 OK in 59ms (Views: 58.2ms) -Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2020-05-16 10:09:06 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"11"} - Rendering inline template - Rendered inline template (46.2ms) -Completed 200 OK in 47ms (Views: 46.6ms) -Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2020-05-16 10:09:06 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"12"} - Rendering inline template - Rendered inline template (48.3ms) -Completed 200 OK in 49ms (Views: 48.6ms) -Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2020-05-16 10:09:17 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"13"} - Rendering inline template - Rendered inline template (45.8ms) -Completed 200 OK in 47ms (Views: 46.1ms) -Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2020-05-16 10:09:28 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"14"} - Rendering inline template - Rendered inline template (48.1ms) -Completed 200 OK in 49ms (Views: 48.4ms) -Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2020-05-16 10:09:29 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15"} - Rendering inline template - Rendered inline template (50.3ms) -Completed 200 OK in 51ms (Views: 50.6ms) -Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2020-05-16 10:09:33 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"16"} - Rendering inline template - Rendered inline template (41.4ms) -Completed 200 OK in 42ms (Views: 41.8ms) -Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2020-05-16 10:09:34 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"17"} - Rendering inline template - Rendered inline template (44.5ms) -Completed 200 OK in 45ms (Views: 44.8ms) -Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2020-05-16 10:09:35 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"18"} - Rendering inline template - Rendered inline template (45.7ms) -Completed 200 OK in 46ms (Views: 46.0ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:10:54 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1005.0ms) -Completed 200 OK in 1008ms (Views: 1006.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:10:55 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:10:55 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:11:05 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1035.2ms) -Completed 200 OK in 1040ms (Views: 1036.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:11:06 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:11:06 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:12:15 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1030.0ms) -Completed 200 OK in 1034ms (Views: 1031.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:12:16 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:12:16 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:14:10 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1084.1ms) -Completed 200 OK in 1095ms (Views: 1087.5ms) -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:14:11 -0400 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:14:11 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:16:24 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1175.2ms) -Completed 200 OK in 1178ms (Views: 1176.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:16:25 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:16:25 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:30:41 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1198.2ms) -Completed 200 OK in 1202ms (Views: 1199.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:30:42 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:30:42 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:30:53 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (748.2ms) -Completed 200 OK in 752ms (Views: 749.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:30:54 -0400 -Started GET "/assets/application-dca7536aa4b5d6821482faaf8480aacf6b2d6915affaf661e48140d71573a484.js" for 127.0.0.1 at 2020-05-16 10:30:54 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:40:30 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (2509.6ms) -Completed 200 OK in 2513ms (Views: 2510.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:40:33 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:40:33 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:42:49 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1116.2ms) -Completed 200 OK in 1121ms (Views: 1118.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:42:50 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:42:50 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:43:34 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1090.5ms) -Completed 200 OK in 1099ms (Views: 1094.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:43:35 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:43:35 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:44:52 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1013.3ms) -Completed 200 OK in 1019ms (Views: 1015.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:44:53 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:44:53 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:46:45 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1069.8ms) -Completed 200 OK in 1076ms (Views: 1072.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:46:46 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:46:46 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:47:24 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1151.2ms) -Completed 200 OK in 1161ms (Views: 1154.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:47:25 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:47:25 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 10:47:27 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (74.5ms) -Completed 200 OK in 77ms (Views: 74.8ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 10:47:46 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (946.6ms) -Completed 200 OK in 950ms (Views: 948.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 10:47:47 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 10:47:47 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 10:47:49 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (119.3ms) -Completed 200 OK in 120ms (Views: 119.6ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 10:47:50 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (71.7ms) -Completed 200 OK in 73ms (Views: 72.1ms) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 10:47:50 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (46.4ms) -Completed 200 OK in 47ms (Views: 46.7ms) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 10:47:51 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (45.6ms) -Completed 200 OK in 46ms (Views: 45.9ms) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 10:47:52 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1589640473.821494 ********************************************* - Rendered inline template (1313.1ms) -Completed 200 OK in 1314ms (Views: 1313.4ms) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 10:47:54 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.5ms) -Completed 200 OK in 75ms (Views: 74.2ms) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 10:47:55 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (126.1ms) -Completed 200 OK in 127ms (Views: 126.5ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 10:47:55 -0400 -Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2020-05-16 10:47:56 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"9"} - Rendering inline template - Rendered inline template (39.9ms) -Completed 200 OK in 41ms (Views: 40.2ms) -Started GET "/assets/factorial-00a7ebab2b76a008fc1d8adbe9e11ff9280b71622a30d2995ef004b731fbe4f8.js" for 127.0.0.1 at 2020-05-16 10:47:56 -0400 -Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2020-05-16 10:47:57 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"10"} - Rendering inline template - Rendered inline template (80.2ms) -Completed 200 OK in 81ms (Views: 80.5ms) -Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2020-05-16 10:48:00 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"11"} - Rendering inline template - Rendered inline template (42.2ms) -Completed 200 OK in 43ms (Views: 42.5ms) -Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2020-05-16 10:48:03 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"12"} - Rendering inline template - Rendered inline template (96.5ms) -Completed 200 OK in 98ms (Views: 97.3ms) -Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2020-05-16 10:48:04 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"13"} - Rendering inline template - Rendered inline template (64.2ms) -Completed 200 OK in 65ms (Views: 64.7ms) -Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2020-05-16 10:48:05 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"14"} - Rendering inline template - Rendered inline template (83.2ms) -Completed 200 OK in 84ms (Views: 83.6ms) -Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2020-05-16 10:48:06 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15"} - Rendering inline template - Rendered inline template (92.6ms) -Completed 200 OK in 94ms (Views: 93.2ms) -Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2020-05-16 10:48:10 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"16"} - Rendering inline template - Rendered inline template (42.7ms) -Completed 200 OK in 43ms (Views: 43.0ms) -Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2020-05-16 10:48:12 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"17"} - Rendering inline template - Rendered inline template (48.0ms) -Completed 200 OK in 49ms (Views: 48.3ms) -Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2020-05-16 10:48:13 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"18"} - Rendering inline template - Rendered inline template (76.3ms) -Completed 200 OK in 77ms (Views: 76.6ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 11:02:56 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (910.5ms) -Completed 200 OK in 913ms (Views: 911.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 11:02:57 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 11:02:57 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 11:20:21 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (901.3ms) -Completed 200 OK in 904ms (Views: 902.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 11:20:22 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 11:20:22 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 11:29:54 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (74.9ms) -Completed 200 OK in 76ms (Views: 75.2ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 11:29:55 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (49.2ms) -Completed 200 OK in 50ms (Views: 49.5ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 11:33:42 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (894.7ms) -Completed 200 OK in 898ms (Views: 895.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 11:33:43 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 11:33:43 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 11:40:37 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (47.1ms) -Completed 200 OK in 48ms (Views: 47.4ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 11:40:38 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (87.4ms) -Completed 200 OK in 88ms (Views: 87.8ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 11:40:51 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (965.2ms) -Completed 200 OK in 968ms (Views: 966.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 11:40:52 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 11:40:52 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 11:42:50 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (48.8ms) -Completed 200 OK in 50ms (Views: 49.2ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 11:42:51 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (41.6ms) -Completed 200 OK in 42ms (Views: 41.9ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 11:43:39 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (889.7ms) -Completed 200 OK in 892ms (Views: 890.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 11:43:40 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 11:43:40 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 12:06:15 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (90.2ms) -Completed 200 OK in 91ms (Views: 90.5ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 12:06:18 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (43.8ms) -Completed 200 OK in 44ms (Views: 44.1ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:06:49 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1096.9ms) -Completed 200 OK in 1100ms (Views: 1098.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:06:50 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:06:50 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:12:21 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (871.9ms) -Completed 200 OK in 876ms (Views: 873.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:12:22 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:12:22 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:14:35 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (869.6ms) -Completed 200 OK in 872ms (Views: 870.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:14:36 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:14:36 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:14:53 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (975.7ms) -Completed 200 OK in 978ms (Views: 976.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:14:54 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:14:54 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:17:52 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (835.6ms) -Completed 200 OK in 839ms (Views: 837.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:17:53 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:17:53 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:18:07 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (864.8ms) -Completed 200 OK in 869ms (Views: 865.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:18:08 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:18:08 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:23:21 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1089.1ms) -Completed 200 OK in 1093ms (Views: 1090.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:23:22 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:23:22 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 12:28:41 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (902.5ms) -Completed 200 OK in 905ms (Views: 903.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 12:28:42 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 12:28:42 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:02:47 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (923.2ms) -Completed 200 OK in 930ms (Views: 925.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:02:48 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:02:48 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:03:12 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1091.4ms) -Completed 200 OK in 1095ms (Views: 1092.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:03:13 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:03:13 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:13:01 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (867.8ms) -Completed 200 OK in 871ms (Views: 869.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:13:02 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:13:02 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:28:16 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1072.4ms) -Completed 200 OK in 1082ms (Views: 1077.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:28:17 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:28:17 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 20:31:24 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (68.9ms) -Completed 200 OK in 70ms (Views: 69.3ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 20:31:25 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (88.3ms) -Completed 200 OK in 89ms (Views: 88.6ms) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 20:31:27 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (68.6ms) -Completed 200 OK in 70ms (Views: 69.0ms) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 20:31:28 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (76.5ms) -Completed 200 OK in 78ms (Views: 77.0ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:32:04 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1387.9ms) -Completed 200 OK in 1394ms (Views: 1390.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:32:06 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:32:06 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:45:38 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1414.5ms) -Completed 200 OK in 1419ms (Views: 1416.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:45:39 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:45:39 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:56:56 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (779.3ms) -Completed 200 OK in 785ms (Views: 782.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:56:57 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:56:57 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 20:58:55 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (894.1ms) -Completed 200 OK in 897ms (Views: 895.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 20:58:56 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 20:58:56 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 21:28:59 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (898.2ms) -Completed 200 OK in 902ms (Views: 899.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 21:29:00 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 21:29:00 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:28:53 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (783.0ms) -Completed 200 OK in 789ms (Views: 785.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:28:54 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:28:54 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:30:49 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1109.8ms) -Completed 200 OK in 1113ms (Views: 1110.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:30:50 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:30:50 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:34:11 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (981.2ms) -Completed 200 OK in 984ms (Views: 982.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:34:12 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:34:12 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 22:34:14 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (42.8ms) -Completed 200 OK in 44ms (Views: 43.1ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 22:34:14 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (82.8ms) -Completed 200 OK in 84ms (Views: 83.1ms) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 22:34:15 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (42.4ms) -Completed 200 OK in 43ms (Views: 42.7ms) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 22:34:17 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (47.7ms) -Completed 200 OK in 48ms (Views: 48.0ms) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 22:34:18 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (41.1ms) -Completed 200 OK in 42ms (Views: 41.4ms) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 22:34:18 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template - Rendered inline template (79.4ms) -Completed 200 OK in 80ms (Views: 79.7ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:39:10 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (889.6ms) -Completed 200 OK in 893ms (Views: 891.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:39:11 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:39:11 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:43:54 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (991.2ms) -Completed 200 OK in 995ms (Views: 992.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:43:55 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:43:55 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:52:22 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (972.1ms) -Completed 200 OK in 975ms (Views: 973.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:52:23 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:52:23 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:53:03 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (867.9ms) -Completed 200 OK in 870ms (Views: 868.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:53:04 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:53:04 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 22:55:14 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (954.5ms) -Completed 200 OK in 958ms (Views: 955.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 22:55:15 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 22:55:15 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 22:55:17 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (44.5ms) -Completed 200 OK in 45ms (Views: 44.8ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 22:55:18 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (80.8ms) -Completed 200 OK in 82ms (Views: 81.2ms) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 22:55:18 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (47.5ms) -Completed 200 OK in 48ms (Views: 47.8ms) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 22:55:19 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (42.1ms) -Completed 200 OK in 43ms (Views: 42.5ms) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 22:55:20 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1589684120.804472 ********************************************* - Rendered inline template (483.0ms) -Completed 200 OK in 484ms (Views: 483.5ms) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 22:55:21 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.9ms) -Completed 200 OK in 45ms (Views: 44.4ms) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 22:55:22 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (55.3ms) -Completed 200 OK in 56ms (Views: 55.6ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 22:55:22 -0400 -Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2020-05-16 22:55:22 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"9"} - Rendering inline template - Rendered inline template (71.5ms) -Completed 200 OK in 73ms (Views: 71.9ms) -Started GET "/assets/factorial-00a7ebab2b76a008fc1d8adbe9e11ff9280b71622a30d2995ef004b731fbe4f8.js" for 127.0.0.1 at 2020-05-16 22:55:23 -0400 -Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2020-05-16 22:55:24 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"10"} - Rendering inline template - Rendered inline template (45.0ms) -Completed 200 OK in 46ms (Views: 45.3ms) -Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2020-05-16 22:55:27 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"11"} - Rendering inline template - Rendered inline template (45.6ms) -Completed 200 OK in 46ms (Views: 45.9ms) -Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2020-05-16 22:55:29 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"12"} - Rendering inline template - Rendered inline template (52.2ms) -Completed 200 OK in 53ms (Views: 52.6ms) -Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2020-05-16 22:55:31 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"13"} - Rendering inline template - Rendered inline template (47.2ms) -Completed 200 OK in 48ms (Views: 47.5ms) -Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2020-05-16 22:55:32 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"14"} - Rendering inline template - Rendered inline template (47.1ms) -Completed 200 OK in 48ms (Views: 47.4ms) -Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2020-05-16 22:55:33 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15"} - Rendering inline template - Rendered inline template (41.7ms) -Completed 200 OK in 43ms (Views: 42.0ms) -Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2020-05-16 22:55:36 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"16"} - Rendering inline template - Rendered inline template (46.2ms) -Completed 200 OK in 47ms (Views: 46.5ms) -Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2020-05-16 22:55:38 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"17"} - Rendering inline template - Rendered inline template (42.1ms) -Completed 200 OK in 43ms (Views: 42.4ms) -Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2020-05-16 22:55:39 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"18"} - Rendering inline template - Rendered inline template (46.6ms) -Completed 200 OK in 47ms (Views: 46.9ms) -Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2020-05-16 22:55:40 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"19"} - Rendering inline template - Rendered inline template (63.4ms) -Completed 200 OK in 65ms (Views: 63.7ms) -Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2020-05-16 22:55:40 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"20"} - Rendering inline template - Rendered inline template (45.2ms) -Completed 200 OK in 46ms (Views: 45.5ms) -Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2020-05-16 22:55:41 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"21"} - Rendering inline template - Rendered inline template (45.7ms) -Completed 200 OK in 46ms (Views: 46.0ms) -Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2020-05-16 22:55:42 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"22"} - Rendering inline template - Rendered inline template (65.4ms) -Completed 200 OK in 66ms (Views: 65.7ms) -Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2020-05-16 22:55:44 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"23"} - Rendering inline template - Rendered inline template (40.4ms) -Completed 200 OK in 41ms (Views: 40.7ms) -Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2020-05-16 22:55:44 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"24"} - Rendering inline template - Rendered inline template (50.4ms) -Completed 200 OK in 51ms (Views: 50.7ms) -Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2020-05-16 22:55:45 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"25"} - Rendering inline template - Rendered inline template (40.4ms) -Completed 200 OK in 41ms (Views: 40.7ms) -Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2020-05-16 22:55:46 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"26"} - Rendering inline template - Rendered inline template (70.0ms) -Completed 200 OK in 71ms (Views: 70.3ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 23:09:45 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (726.4ms) -Completed 200 OK in 730ms (Views: 727.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 23:09:45 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 23:09:45 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-16 23:09:47 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (42.7ms) -Completed 200 OK in 43ms (Views: 43.0ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-16 23:09:47 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (85.8ms) -Completed 200 OK in 87ms (Views: 86.2ms) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-16 23:09:48 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (117.5ms) -Completed 200 OK in 128ms (Views: 127.6ms) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-16 23:09:49 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (47.5ms) -Completed 200 OK in 48ms (Views: 47.8ms) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-16 23:09:50 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1589684990.6742349 ********************************************* - Rendered inline template (384.7ms) -Completed 200 OK in 385ms (Views: 385.0ms) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-16 23:09:51 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (2.3ms) -Completed 200 OK in 80ms (Views: 79.7ms) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-16 23:09:52 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (51.5ms) -Completed 200 OK in 52ms (Views: 51.8ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-16 23:09:52 -0400 -Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2020-05-16 23:09:52 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"9"} - Rendering inline template - Rendered inline template (41.6ms) -Completed 200 OK in 42ms (Views: 41.9ms) -Started GET "/assets/factorial-00a7ebab2b76a008fc1d8adbe9e11ff9280b71622a30d2995ef004b731fbe4f8.js" for 127.0.0.1 at 2020-05-16 23:09:52 -0400 -Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2020-05-16 23:09:54 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"10"} - Rendering inline template - Rendered inline template (76.2ms) -Completed 200 OK in 77ms (Views: 76.5ms) -Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2020-05-16 23:09:57 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"11"} - Rendering inline template - Rendered inline template (45.7ms) -Completed 200 OK in 46ms (Views: 46.0ms) -Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2020-05-16 23:09:59 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"12"} - Rendering inline template - Rendered inline template (43.8ms) -Completed 200 OK in 45ms (Views: 44.1ms) -Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2020-05-16 23:10:01 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"13"} - Rendering inline template - Rendered inline template (46.1ms) -Completed 200 OK in 47ms (Views: 46.4ms) -Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2020-05-16 23:10:02 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"14"} - Rendering inline template - Rendered inline template (43.4ms) -Completed 200 OK in 44ms (Views: 43.7ms) -Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2020-05-16 23:10:02 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15"} - Rendering inline template - Rendered inline template (69.3ms) -Completed 200 OK in 70ms (Views: 69.6ms) -Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2020-05-16 23:10:06 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"16"} - Rendering inline template - Rendered inline template (40.4ms) -Completed 200 OK in 41ms (Views: 40.7ms) -Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2020-05-16 23:10:08 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"17"} - Rendering inline template - Rendered inline template (41.8ms) -Completed 200 OK in 43ms (Views: 42.1ms) -Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2020-05-16 23:10:09 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"18"} - Rendering inline template - Rendered inline template (63.2ms) -Completed 200 OK in 64ms (Views: 63.5ms) -Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2020-05-16 23:10:09 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"19"} - Rendering inline template - Rendered inline template (44.4ms) -Completed 200 OK in 45ms (Views: 44.7ms) -Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2020-05-16 23:10:10 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"20"} - Rendering inline template - Rendered inline template (44.6ms) -Completed 200 OK in 45ms (Views: 44.9ms) -Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2020-05-16 23:10:11 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"21"} - Rendering inline template - Rendered inline template (45.4ms) -Completed 200 OK in 46ms (Views: 45.8ms) -Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2020-05-16 23:10:12 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"22"} - Rendering inline template - Rendered inline template (40.3ms) -Completed 200 OK in 41ms (Views: 40.6ms) -Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2020-05-16 23:10:13 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"23"} - Rendering inline template - Rendered inline template (46.0ms) -Completed 200 OK in 47ms (Views: 46.3ms) -Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2020-05-16 23:10:14 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"24"} - Rendering inline template - Rendered inline template (47.2ms) -Completed 200 OK in 48ms (Views: 47.5ms) -Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2020-05-16 23:10:15 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"25"} - Rendering inline template - Rendered inline template (39.9ms) -Completed 200 OK in 41ms (Views: 40.2ms) -Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2020-05-16 23:10:16 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"26"} - Rendering inline template - Rendered inline template (42.5ms) -Completed 200 OK in 43ms (Views: 42.8ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 23:12:38 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (881.1ms) -Completed 200 OK in 884ms (Views: 882.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 23:12:39 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 23:12:39 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 23:20:14 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (855.5ms) -Completed 200 OK in 859ms (Views: 856.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 23:20:15 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 23:20:15 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 23:29:26 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (932.5ms) -Completed 200 OK in 947ms (Views: 943.1ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 23:29:27 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 23:29:27 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-16 23:34:58 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (972.1ms) -Completed 200 OK in 975ms (Views: 973.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-16 23:34:59 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-16 23:34:59 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:01:41 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1104.4ms) -Completed 200 OK in 1108ms (Views: 1105.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:01:42 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:01:42 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:03:53 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1046.3ms) -Completed 200 OK in 1049ms (Views: 1047.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:03:54 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:03:54 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:05:01 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (805.5ms) -Completed 200 OK in 808ms (Views: 806.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:05:02 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:05:02 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:08:34 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (891.5ms) -Completed 200 OK in 894ms (Views: 892.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:08:35 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:08:35 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:12:43 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (929.4ms) -Completed 200 OK in 933ms (Views: 930.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:12:43 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:12:43 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:15:29 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (870.8ms) -Completed 200 OK in 874ms (Views: 871.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:15:30 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:15:30 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:17:05 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1089.1ms) -Completed 200 OK in 1092ms (Views: 1090.5ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:17:06 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:17:06 -0400 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:26:42 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (910.0ms) -Completed 200 OK in 913ms (Views: 911.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:26:43 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:26:43 -0400 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2020-05-17 00:26:50 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (46.3ms) -Completed 200 OK in 47ms (Views: 46.7ms) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2020-05-17 00:26:51 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (47.7ms) -Completed 200 OK in 48ms (Views: 48.0ms) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2020-05-17 00:26:52 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (42.4ms) -Completed 200 OK in 43ms (Views: 42.7ms) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2020-05-17 00:26:53 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (41.5ms) -Completed 200 OK in 42ms (Views: 41.8ms) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2020-05-17 00:26:53 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1589689614.2849941 ********************************************* - Rendered inline template (423.6ms) -Completed 200 OK in 424ms (Views: 423.9ms) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2020-05-17 00:26:54 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.5ms) -Completed 200 OK in 56ms (Views: 55.7ms) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2020-05-17 00:26:55 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (66.6ms) -Completed 200 OK in 68ms (Views: 66.9ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2020-05-17 00:26:55 -0400 -Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2020-05-17 00:26:56 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"9"} - Rendering inline template - Rendered inline template (110.8ms) -Completed 200 OK in 113ms (Views: 111.4ms) -Started GET "/assets/factorial-00a7ebab2b76a008fc1d8adbe9e11ff9280b71622a30d2995ef004b731fbe4f8.js" for 127.0.0.1 at 2020-05-17 00:26:56 -0400 -Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2020-05-17 00:26:57 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"10"} - Rendering inline template - Rendered inline template (143.2ms) -Completed 200 OK in 144ms (Views: 143.6ms) -Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2020-05-17 00:27:00 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"11"} - Rendering inline template - Rendered inline template (151.7ms) -Completed 200 OK in 153ms (Views: 152.1ms) -Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2020-05-17 00:27:03 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"12"} - Rendering inline template - Rendered inline template (42.1ms) -Completed 200 OK in 43ms (Views: 42.4ms) -Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2020-05-17 00:27:05 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"13"} - Rendering inline template - Rendered inline template (45.6ms) -Completed 200 OK in 47ms (Views: 46.0ms) -Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2020-05-17 00:27:06 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"14"} - Rendering inline template - Rendered inline template (40.9ms) -Completed 200 OK in 42ms (Views: 41.2ms) -Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2020-05-17 00:27:06 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15"} - Rendering inline template - Rendered inline template (40.2ms) -Completed 200 OK in 41ms (Views: 40.6ms) -Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2020-05-17 00:27:10 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"16"} - Rendering inline template - Rendered inline template (48.0ms) -Completed 200 OK in 49ms (Views: 48.3ms) -Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2020-05-17 00:27:12 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"17"} - Rendering inline template - Rendered inline template (64.8ms) -Completed 200 OK in 66ms (Views: 65.0ms) -Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2020-05-17 00:27:13 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"18"} - Rendering inline template - Rendered inline template (40.3ms) -Completed 200 OK in 41ms (Views: 40.6ms) -Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2020-05-17 00:27:14 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"19"} - Rendering inline template - Rendered inline template (42.2ms) -Completed 200 OK in 43ms (Views: 42.5ms) -Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2020-05-17 00:27:14 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"20"} - Rendering inline template - Rendered inline template (74.7ms) -Completed 200 OK in 75ms (Views: 75.1ms) -Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2020-05-17 00:27:15 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"21"} - Rendering inline template - Rendered inline template (42.7ms) -Completed 200 OK in 43ms (Views: 43.0ms) -Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2020-05-17 00:27:16 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"22"} - Rendering inline template - Rendered inline template (42.7ms) -Completed 200 OK in 43ms (Views: 43.0ms) -Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2020-05-17 00:27:18 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"23"} - Rendering inline template - Rendered inline template (41.6ms) -Completed 200 OK in 42ms (Views: 41.9ms) -Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2020-05-17 00:27:18 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"24"} - Rendering inline template - Rendered inline template (47.3ms) -Completed 200 OK in 48ms (Views: 47.6ms) -Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2020-05-17 00:27:19 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"25"} - Rendering inline template - Rendered inline template (49.7ms) -Completed 200 OK in 50ms (Views: 50.0ms) -Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2020-05-17 00:27:20 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"26"} - Rendering inline template - Rendered inline template (47.1ms) -Completed 200 OK in 48ms (Views: 47.4ms) -Started GET "/hyper_spec_test/27" for 127.0.0.1 at 2020-05-17 00:27:21 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"27"} - Rendering inline template - Rendered inline template (65.6ms) -Completed 200 OK in 66ms (Views: 65.9ms) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2020-05-17 00:28:26 -0400 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (899.7ms) -Completed 200 OK in 903ms (Views: 900.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2020-05-17 00:28:27 -0400 -Started GET "/assets/application-5502243473446f0ad6f885d65ba41ef3da0f2353f433fb451240abe396fba784.js" for 127.0.0.1 at 2020-05-17 00:28:27 -0400 -Started GET "/test" for 127.0.0.1 at 2021-01-06 06:52:58 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 1.1ms | Allocations: 458) -Completed 200 OK in 7652ms (Views: 7652.0ms | Allocations: 11373013) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-06 06:53:06 -0500 -Started GET "/assets/application-a6b1b8b91d0864a1dfd13caf8f9dc9e70d3f4d3f06a2a8972f9d94b5f43a1857.js" for 127.0.0.1 at 2021-01-06 06:53:06 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:07 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 54.6ms | Allocations: 64638) -Completed 200 OK in 56ms (Views: 54.9ms | Allocations: 65052) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:08 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 37.8ms | Allocations: 64768) -Completed 200 OK in 38ms (Views: 38.0ms | Allocations: 65002) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:08 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 41.4ms | Allocations: 64747) -Completed 200 OK in 42ms (Views: 41.6ms | Allocations: 64980) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:09 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 74.6ms | Allocations: 64784) -Completed 200 OK in 75ms (Views: 74.9ms | Allocations: 65017) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:10 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 53.9ms | Allocations: 64767) -Completed 200 OK in 55ms (Views: 54.1ms | Allocations: 65000) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:10 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1609933991.422851 ********************************************* - Rendered inline template (Duration: 754.5ms | Allocations: 185554) -Completed 200 OK in 755ms (Views: 754.8ms | Allocations: 185798) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:11 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 1.4ms | Allocations: 1706) -Completed 200 OK in 42ms (Views: 41.5ms | Allocations: 64943) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:12 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 38.9ms | Allocations: 65254) -Completed 200 OK in 40ms (Views: 39.2ms | Allocations: 65488) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-06 06:53:12 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:13 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 41.3ms | Allocations: 73374) -Completed 200 OK in 42ms (Views: 41.6ms | Allocations: 73608) -Started GET "/assets/factorial-0a5e8cde9f74eaaf8dbea7f9f5c757aee85eabfef7181e02e014e93116db56fe.js" for 127.0.0.1 at 2021-01-06 06:53:13 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:14 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 66.7ms | Allocations: 64849) -Completed 200 OK in 67ms (Views: 66.9ms | Allocations: 65082) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:16 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 41.4ms | Allocations: 64821) -Completed 200 OK in 42ms (Views: 41.6ms | Allocations: 65054) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:19 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 38.8ms | Allocations: 64887) -Completed 200 OK in 40ms (Views: 39.0ms | Allocations: 65120) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:20 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 39.3ms | Allocations: 64886) -Completed 200 OK in 40ms (Views: 39.6ms | Allocations: 65119) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:21 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 67.2ms | Allocations: 64804) -Completed 200 OK in 68ms (Views: 67.5ms | Allocations: 65037) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:22 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 38.0ms | Allocations: 64777) -Completed 200 OK in 39ms (Views: 38.3ms | Allocations: 65010) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:25 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 37.1ms | Allocations: 64772) -Completed 200 OK in 38ms (Views: 37.4ms | Allocations: 65005) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:27 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 41.3ms | Allocations: 64772) -Completed 200 OK in 42ms (Views: 41.5ms | Allocations: 65005) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-06 06:53:28 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 38.2ms | Allocations: 64772) -Completed 200 OK in 39ms (Views: 38.5ms | Allocations: 65005) -Started GET "/test" for 127.0.0.1 at 2021-01-11 15:27:16 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (0.9ms) -Completed 200 OK in 6667ms (Views: 6667.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 15:27:23 -0500 -Started GET "/assets/application-f0e3cde56a16e9c5222c75f287bbad23b8ac0e782db3d56ae40c4f86b0f3217e.js" for 127.0.0.1 at 2021-01-11 15:27:23 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:23 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (101.6ms) -Completed 200 OK in 102ms (Views: 101.9ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:34 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.6ms) -Completed 200 OK in 39ms (Views: 38.8ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:45 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.4ms) -Completed 200 OK in 41ms (Views: 40.6ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:46 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.3ms) -Completed 200 OK in 39ms (Views: 38.6ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:47 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.9ms) -Completed 200 OK in 40ms (Views: 39.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:47 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610396868.6430058 ********************************************* - Rendered inline template (815.7ms) -Completed 500 Internal Server Error in 816ms -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:27:49 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.8ms) -Completed 200 OK in 41ms (Views: 40.8ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:00 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (54.6ms) -Completed 200 OK in 55ms (Views: 54.9ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-11 15:28:00 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:00 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.4ms) -Completed 200 OK in 44ms (Views: 43.7ms) -Started GET "/assets/factorial-fd6bacfc4ea652b598c28c39f6cf80ab4867e886a7a5a828644d2d9516634c2c.js" for 127.0.0.1 at 2021-01-11 15:28:00 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:01 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.3ms) -Completed 200 OK in 42ms (Views: 41.5ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:04 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.7ms) -Completed 200 OK in 44ms (Views: 44.0ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:07 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.3ms) -Completed 200 OK in 44ms (Views: 43.6ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:18 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.3ms) -Completed 200 OK in 39ms (Views: 38.6ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:29 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.0ms) -Completed 200 OK in 44ms (Views: 43.3ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:29 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.9ms) -Completed 200 OK in 44ms (Views: 43.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:33 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.6ms) -Completed 200 OK in 43ms (Views: 42.8ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:35 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (65.3ms) -Completed 200 OK in 66ms (Views: 65.5ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:28:36 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.6ms) -Completed 200 OK in 44ms (Views: 43.9ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:30:06 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (835.4ms) -Completed 200 OK in 838ms (Views: 836.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 15:30:06 -0500 -Started GET "/assets/application-f0e3cde56a16e9c5222c75f287bbad23b8ac0e782db3d56ae40c4f86b0f3217e.js" for 127.0.0.1 at 2021-01-11 15:30:06 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:33:05 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (786.4ms) -Completed 200 OK in 789ms (Views: 787.4ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 15:33:06 -0500 -Started GET "/assets/application-f0e3cde56a16e9c5222c75f287bbad23b8ac0e782db3d56ae40c4f86b0f3217e.js" for 127.0.0.1 at 2021-01-11 15:33:06 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 15:39:42 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (2547.6ms) -Completed 200 OK in 2551ms (Views: 2549.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 15:39:45 -0500 -Started GET "/assets/application-bb1eb073b882c183b27d7295602a4df2fe93919800e50d317f09629a8656c9e8.js" for 127.0.0.1 at 2021-01-11 15:39:45 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:00:11 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (2266.5ms) -Completed 200 OK in 2271ms (Views: 2267.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:00:13 -0500 -Started GET "/assets/application-db010c7483f9c5bd7c01175e4bd02fce1fa0cc8aef0389cd83b9c4c057318109.js" for 127.0.0.1 at 2021-01-11 18:00:13 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:06:33 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (2339.0ms) -Completed 200 OK in 2342ms (Views: 2340.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:06:36 -0500 -Started GET "/assets/application-0f755e419ce8c501a5ff2478b8c5dbbf7014aff9108fc05fa0427816e3e41bb3.js" for 127.0.0.1 at 2021-01-11 18:06:36 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:08:14 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (2178.8ms) -Completed 200 OK in 2182ms (Views: 2179.9ms) -Started GET "/assets/application-d0c90923b443ebe8d1fda33c8b54f939c64b41e839388c80109ede61f3bb3490.js" for 127.0.0.1 at 2021-01-11 18:08:16 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:08:16 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:08:42 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1817.7ms) -Completed 200 OK in 1820ms (Views: 1818.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:08:44 -0500 -Started GET "/assets/application-6cd10736367bdfab8d23b8fa2374612b215ec6be0447ac4fd3fed90f82d0973c.js" for 127.0.0.1 at 2021-01-11 18:08:44 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:09:11 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (2251.9ms) -Completed 200 OK in 2254ms (Views: 2252.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:09:13 -0500 -Started GET "/assets/application-9d15cf31202a76b8b0907fc0febadb60fb77941e433d26ba2afade625d095edc.js" for 127.0.0.1 at 2021-01-11 18:09:13 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:11:11 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (1846.3ms) -Completed 200 OK in 1849ms (Views: 1847.3ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:11:13 -0500 -Started GET "/assets/application-604613529824cb8379ab4478e7a4f634801bd431bbf5c26edbcc817956025019.js" for 127.0.0.1 at 2021-01-11 18:11:13 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:12:00 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (837.6ms) -Completed 200 OK in 840ms (Views: 838.6ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:12:01 -0500 -Started GET "/assets/application-604613529824cb8379ab4478e7a4f634801bd431bbf5c26edbcc817956025019.js" for 127.0.0.1 at 2021-01-11 18:12:01 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-11 18:14:32 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (7280.8ms) -Completed 200 OK in 7284ms (Views: 7281.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-11 18:14:39 -0500 -Started GET "/assets/application-e1c6fd154bc3c891f08d3cba2e23903e188beabcbd5eabd12089baa28b7598c7.js" for 127.0.0.1 at 2021-01-11 18:14:39 -0500 -Started GET "/test" for 127.0.0.1 at 2021-01-12 08:09:53 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (0.9ms) -Completed 200 OK in 1080ms (Views: 1080.2ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-12 08:09:54 -0500 -Started GET "/assets/application-604613529824cb8379ab4478e7a4f634801bd431bbf5c26edbcc817956025019.js" for 127.0.0.1 at 2021-01-12 08:09:54 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:09:55 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.9ms) -Completed 200 OK in 44ms (Views: 43.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:14 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (82.1ms) -Completed 200 OK in 83ms (Views: 82.4ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:25 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.0ms) -Completed 200 OK in 43ms (Views: 42.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:26 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (63.5ms) -Completed 200 OK in 64ms (Views: 63.8ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:27 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (48.3ms) -Completed 200 OK in 49ms (Views: 48.5ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:28 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610457029.082207 ********************************************* - Rendered inline template (1035.9ms) -Completed 200 OK in 1037ms (Views: 1036.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:29 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.7ms) -Completed 200 OK in 48ms (Views: 47.3ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:30 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (84.5ms) -Completed 200 OK in 86ms (Views: 84.8ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-12 08:10:30 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:31 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (86.0ms) -Completed 200 OK in 87ms (Views: 86.2ms) -Started GET "/assets/factorial-122fb03ce35a06f24d606974efe2d36a78db36a36bf2f1e9c2794194e9573e7d.js" for 127.0.0.1 at 2021-01-12 08:10:31 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:32 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.2ms) -Completed 200 OK in 44ms (Views: 43.5ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:33 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.7ms) -Completed 200 OK in 44ms (Views: 44.0ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:33 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.1ms) -Completed 200 OK in 43ms (Views: 42.4ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:44 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.9ms) -Completed 200 OK in 45ms (Views: 44.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:55 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.9ms) -Completed 200 OK in 43ms (Views: 42.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:10:56 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.6ms) -Completed 200 OK in 42ms (Views: 41.9ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:11:00 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.5ms) -Completed 200 OK in 44ms (Views: 43.7ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:11:01 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.1ms) -Completed 200 OK in 43ms (Views: 42.4ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:11:02 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (63.1ms) -Completed 200 OK in 64ms (Views: 63.4ms) -Started GET "/test" for 127.0.0.1 at 2021-01-12 08:21:21 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (0.9ms) -Completed 200 OK in 802ms (Views: 801.8ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-12 08:21:22 -0500 -Started GET "/assets/application-604613529824cb8379ab4478e7a4f634801bd431bbf5c26edbcc817956025019.js" for 127.0.0.1 at 2021-01-12 08:21:22 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:23 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.9ms) -Completed 200 OK in 44ms (Views: 43.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:24 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.8ms) -Completed 200 OK in 45ms (Views: 44.1ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:25 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (70.0ms) -Completed 200 OK in 71ms (Views: 70.3ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:25 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (44.3ms) -Completed 200 OK in 45ms (Views: 44.6ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:26 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.9ms) -Completed 200 OK in 43ms (Views: 42.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:27 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610457687.562117 ********************************************* - Rendered inline template (357.8ms) -Completed 200 OK in 358ms (Views: 358.1ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:28 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.6ms) -Completed 200 OK in 43ms (Views: 43.0ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:28 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.6ms) -Completed 200 OK in 44ms (Views: 43.8ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-12 08:21:28 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:29 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.9ms) -Completed 200 OK in 43ms (Views: 42.2ms) -Started GET "/assets/factorial-122fb03ce35a06f24d606974efe2d36a78db36a36bf2f1e9c2794194e9573e7d.js" for 127.0.0.1 at 2021-01-12 08:21:29 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:30 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (50.8ms) -Completed 200 OK in 51ms (Views: 51.0ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:33 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (58.5ms) -Completed 200 OK in 59ms (Views: 58.7ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:36 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.5ms) -Completed 200 OK in 42ms (Views: 41.8ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:37 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (38.7ms) -Completed 200 OK in 39ms (Views: 39.0ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:38 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (62.9ms) -Completed 200 OK in 64ms (Views: 63.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:39 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.4ms) -Completed 200 OK in 44ms (Views: 43.6ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:42 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.8ms) -Completed 200 OK in 40ms (Views: 40.0ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:44 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (64.0ms) -Completed 200 OK in 65ms (Views: 64.3ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:21:45 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.8ms) -Completed 200 OK in 40ms (Views: 40.0ms) -Started GET "/test" for 127.0.0.1 at 2021-01-12 08:24:42 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.0ms) -Completed 200 OK in 861ms (Views: 860.7ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-12 08:24:43 -0500 -Started GET "/assets/application-604613529824cb8379ab4478e7a4f634801bd431bbf5c26edbcc817956025019.js" for 127.0.0.1 at 2021-01-12 08:24:43 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:43 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (44.7ms) -Completed 200 OK in 45ms (Views: 45.0ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:44 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (49.2ms) -Completed 200 OK in 50ms (Views: 49.4ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:45 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (42.6ms) -Completed 200 OK in 43ms (Views: 42.9ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:46 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (44.1ms) -Completed 200 OK in 45ms (Views: 44.4ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:46 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.8ms) -Completed 200 OK in 43ms (Views: 42.1ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:47 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610457888.044024 ********************************************* - Rendered inline template (352.0ms) -Completed 200 OK in 353ms (Views: 352.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:48 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.7ms) -Completed 200 OK in 46ms (Views: 46.0ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:49 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (53.4ms) -Completed 200 OK in 54ms (Views: 53.6ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-12 08:24:49 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:50 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (62.8ms) -Completed 200 OK in 63ms (Views: 63.1ms) -Started GET "/assets/factorial-122fb03ce35a06f24d606974efe2d36a78db36a36bf2f1e9c2794194e9573e7d.js" for 127.0.0.1 at 2021-01-12 08:24:50 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:51 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.9ms) -Completed 200 OK in 41ms (Views: 41.1ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:54 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.6ms) -Completed 200 OK in 42ms (Views: 41.9ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:56 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (65.0ms) -Completed 200 OK in 66ms (Views: 65.3ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:57 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.1ms) -Completed 200 OK in 44ms (Views: 43.3ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:58 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (46.7ms) -Completed 200 OK in 47ms (Views: 47.0ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:24:59 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (65.1ms) -Completed 200 OK in 66ms (Views: 65.4ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:25:03 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.6ms) -Completed 200 OK in 44ms (Views: 43.8ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:25:05 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.9ms) -Completed 200 OK in 41ms (Views: 40.1ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:25:05 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (66.3ms) -Completed 200 OK in 67ms (Views: 66.6ms) -Started GET "/test" for 127.0.0.1 at 2021-01-12 08:26:29 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 1.0ms | Allocations: 458) -Completed 200 OK in 2142ms (Views: 2141.2ms | Allocations: 1852590) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-12 08:26:31 -0500 -Started GET "/assets/application-e1c6fd154bc3c891f08d3cba2e23903e188beabcbd5eabd12089baa28b7598c7.js" for 127.0.0.1 at 2021-01-12 08:26:31 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:32 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 42.7ms | Allocations: 73248) -Completed 200 OK in 44ms (Views: 43.0ms | Allocations: 73662) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:33 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 76.3ms | Allocations: 73372) -Completed 200 OK in 77ms (Views: 76.8ms | Allocations: 73605) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:34 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 84.6ms | Allocations: 73377) -Completed 200 OK in 86ms (Views: 85.6ms | Allocations: 73610) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:34 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 43.9ms | Allocations: 73398) -Completed 200 OK in 45ms (Views: 44.2ms | Allocations: 73631) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:35 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 43.0ms | Allocations: 73376) -Completed 200 OK in 44ms (Views: 43.3ms | Allocations: 73609) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:36 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610457996.778383 ********************************************* - Rendered inline template (Duration: 655.4ms | Allocations: 253413) -Completed 200 OK in 656ms (Views: 655.7ms | Allocations: 253657) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:37 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 1.6ms | Allocations: 1706) -Completed 200 OK in 42ms (Views: 41.9ms | Allocations: 73551) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:37 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 44.2ms | Allocations: 73855) -Completed 200 OK in 45ms (Views: 44.5ms | Allocations: 74089) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-12 08:26:38 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:38 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 62.9ms | Allocations: 74632) -Completed 200 OK in 64ms (Views: 63.4ms | Allocations: 74866) -Started GET "/assets/factorial-f4fa0c489ec4019295bbf2817a14a0708473bcb7f48bf3e8a4a44a52062bb7f9.js" for 127.0.0.1 at 2021-01-12 08:26:38 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:39 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 90.9ms | Allocations: 73467) -Completed 200 OK in 92ms (Views: 91.3ms | Allocations: 73700) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:42 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 43.6ms | Allocations: 73429) -Completed 200 OK in 44ms (Views: 43.8ms | Allocations: 73662) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:45 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 43.6ms | Allocations: 73496) -Completed 200 OK in 44ms (Views: 43.9ms | Allocations: 73729) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:46 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 68.5ms | Allocations: 73527) -Completed 200 OK in 69ms (Views: 68.8ms | Allocations: 73760) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:47 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 42.3ms | Allocations: 73386) -Completed 200 OK in 43ms (Views: 42.5ms | Allocations: 73619) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:47 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 40.2ms | Allocations: 73381) -Completed 200 OK in 41ms (Views: 40.5ms | Allocations: 73614) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:51 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 41.1ms | Allocations: 73381) -Completed 200 OK in 42ms (Views: 41.4ms | Allocations: 73614) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:53 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 46.0ms | Allocations: 73402) -Completed 200 OK in 47ms (Views: 46.2ms | Allocations: 73635) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:26:53 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 42.6ms | Allocations: 73381) -Completed 200 OK in 43ms (Views: 42.9ms | Allocations: 73614) -Started GET "/test" for 127.0.0.1 at 2021-01-12 08:28:34 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (0.9ms) -Completed 200 OK in 973ms (Views: 972.9ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-12 08:28:35 -0500 -Started GET "/assets/application-e1c6fd154bc3c891f08d3cba2e23903e188beabcbd5eabd12089baa28b7598c7.js" for 127.0.0.1 at 2021-01-12 08:28:35 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:36 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.5ms) -Completed 200 OK in 44ms (Views: 43.8ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:37 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (74.1ms) -Completed 200 OK in 75ms (Views: 74.4ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:37 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (39.7ms) -Completed 200 OK in 40ms (Views: 39.9ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:38 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.1ms) -Completed 200 OK in 41ms (Views: 40.4ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:39 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.6ms) -Completed 200 OK in 43ms (Views: 41.9ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:39 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610458120.734995 ********************************************* - Rendered inline template (932.3ms) -Completed 200 OK in 933ms (Views: 932.5ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:41 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.5ms) -Completed 200 OK in 45ms (Views: 44.7ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:41 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (64.2ms) -Completed 200 OK in 65ms (Views: 64.5ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-12 08:28:42 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:42 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (126.0ms) -Completed 200 OK in 127ms (Views: 126.3ms) -Started GET "/assets/factorial-f4fa0c489ec4019295bbf2817a14a0708473bcb7f48bf3e8a4a44a52062bb7f9.js" for 127.0.0.1 at 2021-01-12 08:28:42 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:43 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (66.3ms) -Completed 200 OK in 67ms (Views: 66.5ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:46 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (65.0ms) -Completed 200 OK in 66ms (Views: 65.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:49 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (95.8ms) -Completed 200 OK in 97ms (Views: 96.1ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:50 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (44.9ms) -Completed 200 OK in 45ms (Views: 45.1ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:51 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (40.4ms) -Completed 200 OK in 41ms (Views: 40.7ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:51 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (41.3ms) -Completed 200 OK in 42ms (Views: 41.5ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:55 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.0ms) -Completed 200 OK in 44ms (Views: 43.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:57 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (43.5ms) -Completed 200 OK in 44ms (Views: 43.8ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-12 08:28:57 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (64.3ms) -Completed 200 OK in 65ms (Views: 64.5ms) -Started GET "/test" for 127.0.0.1 at 2021-01-13 13:23:14 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.8ms) -Completed 200 OK in 1981ms (Views: 1981.0ms) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-13 13:23:16 -0500 -Started GET "/assets/application-e1c6fd154bc3c891f08d3cba2e23903e188beabcbd5eabd12089baa28b7598c7.js" for 127.0.0.1 at 2021-01-13 13:23:16 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:17 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (103.1ms) -Completed 200 OK in 105ms (Views: 103.7ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:18 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (100.1ms) -Completed 200 OK in 101ms (Views: 100.5ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:19 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (165.6ms) -Completed 200 OK in 167ms (Views: 166.0ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:20 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (224.6ms) -Completed 200 OK in 226ms (Views: 225.0ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:21 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (99.3ms) -Completed 200 OK in 101ms (Views: 100.1ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:22 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610562203.118643 ********************************************* - Rendered inline template (701.0ms) -Completed 200 OK in 702ms (Views: 701.5ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:23 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (2.6ms) -Completed 200 OK in 132ms (Views: 131.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:24 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (95.7ms) -Completed 200 OK in 97ms (Views: 96.4ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-13 13:23:24 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:25 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (109.0ms) -Completed 200 OK in 110ms (Views: 109.4ms) -Started GET "/assets/factorial-f4fa0c489ec4019295bbf2817a14a0708473bcb7f48bf3e8a4a44a52062bb7f9.js" for 127.0.0.1 at 2021-01-13 13:23:25 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:27 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (114.4ms) -Completed 200 OK in 116ms (Views: 114.9ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:30 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (76.9ms) -Completed 200 OK in 78ms (Views: 77.3ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:33 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (83.9ms) -Completed 200 OK in 85ms (Views: 84.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:34 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (77.4ms) -Completed 200 OK in 78ms (Views: 77.8ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:35 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (70.7ms) -Completed 200 OK in 73ms (Views: 71.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:36 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (70.4ms) -Completed 200 OK in 72ms (Views: 70.8ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:39 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (127.4ms) -Completed 200 OK in 129ms (Views: 127.9ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:41 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (88.3ms) -Completed 200 OK in 89ms (Views: 88.7ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:23:42 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (77.9ms) -Completed 200 OK in 79ms (Views: 78.3ms) -Started GET "/test" for 127.0.0.1 at 2021-01-13 13:27:25 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (1.8ms) -Completed 200 OK in 1679ms (Views: 1678.3ms) -Started GET "/assets/application-e1c6fd154bc3c891f08d3cba2e23903e188beabcbd5eabd12089baa28b7598c7.js" for 127.0.0.1 at 2021-01-13 13:27:27 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-13 13:27:27 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:28 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (74.7ms) -Completed 200 OK in 76ms (Views: 75.1ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:29 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (149.3ms) -Completed 200 OK in 151ms (Views: 149.8ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:30 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (86.0ms) -Completed 200 OK in 87ms (Views: 86.4ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:31 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (79.9ms) -Completed 200 OK in 81ms (Views: 80.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:31 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (95.0ms) -Completed 200 OK in 96ms (Views: 95.4ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:32 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610562453.2663019 ********************************************* - Rendered inline template (547.3ms) -Completed 200 OK in 548ms (Views: 547.7ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:33 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (2.0ms) -Completed 200 OK in 80ms (Views: 79.7ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:34 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (116.3ms) -Completed 200 OK in 117ms (Views: 116.6ms) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-13 13:27:34 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:35 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (91.4ms) -Completed 200 OK in 92ms (Views: 91.8ms) -Started GET "/assets/factorial-f4fa0c489ec4019295bbf2817a14a0708473bcb7f48bf3e8a4a44a52062bb7f9.js" for 127.0.0.1 at 2021-01-13 13:27:35 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:36 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (123.8ms) -Completed 200 OK in 125ms (Views: 124.4ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:39 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (98.9ms) -Completed 200 OK in 101ms (Views: 99.4ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:42 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (79.1ms) -Completed 200 OK in 80ms (Views: 79.4ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:44 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (75.8ms) -Completed 200 OK in 77ms (Views: 76.2ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:45 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (65.0ms) -Completed 200 OK in 66ms (Views: 65.5ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:46 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (121.5ms) -Completed 200 OK in 123ms (Views: 121.9ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:49 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (70.2ms) -Completed 200 OK in 71ms (Views: 70.5ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:51 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (109.0ms) -Completed 200 OK in 111ms (Views: 110.5ms) -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-13 13:27:52 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (85.7ms) -Completed 200 OK in 87ms (Views: 86.1ms) -Started GET "/test" for 127.0.0.1 at 2021-01-15 08:58:47 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 1.2ms | Allocations: 458) -Completed 200 OK in 2629ms (Views: 2629.2ms | Allocations: 1824133) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 08:58:49 -0500 -Started GET "/assets/application-ed73017d0eda603a9143e894a7f478a18397f905fe0e44b83109df164382949d.js" for 127.0.0.1 at 2021-01-15 08:58:49 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-15 08:58:50 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 77.2ms | Allocations: 73692) -Completed 200 OK in 78ms (Views: 77.5ms | Allocations: 74148) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-15 08:59:39 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 949.5ms | Allocations: 1450662) -Completed 200 OK in 954ms (Views: 951.1ms | Allocations: 1452506) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 08:59:40 -0500 -Started GET "/assets/application-ed73017d0eda603a9143e894a7f478a18397f905fe0e44b83109df164382949d.js" for 127.0.0.1 at 2021-01-15 08:59:40 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-15 09:07:25 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 938.4ms | Allocations: 1450662) -Completed 200 OK in 942ms (Views: 939.7ms | Allocations: 1452506) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 09:07:26 -0500 -Started GET "/assets/application-ed73017d0eda603a9143e894a7f478a18397f905fe0e44b83109df164382949d.js" for 127.0.0.1 at 2021-01-15 09:07:26 -0500 -Started GET "/hyperstack_test/1" for 127.0.0.1 at 2021-01-15 09:11:04 -0500 -Processing by HyperstackTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1788.9ms | Allocations: 1704600) -Completed 200 OK in 1792ms (Views: 1790.2ms | Allocations: 1706435) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 09:11:06 -0500 -Started GET "/assets/application-e1c6fd154bc3c891f08d3cba2e23903e188beabcbd5eabd12089baa28b7598c7.js" for 127.0.0.1 at 2021-01-15 09:11:06 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-15 09:20:24 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 2144.1ms | Allocations: 1755418) -Completed 200 OK in 2147ms (Views: 2145.4ms | Allocations: 1757262) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 09:20:26 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-15 09:20:26 -0500 -Started GET "/test" for 127.0.0.1 at 2021-01-15 09:27:49 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 1.1ms | Allocations: 458) -Completed 200 OK in 1111ms (Views: 1110.7ms | Allocations: 1451573) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 09:27:51 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-15 09:27:51 -0500 -Started GET "/test" for 127.0.0.1 at 2021-01-15 09:28:11 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 0.8ms | Allocations: 458) -Completed 200 OK in 931ms (Views: 930.4ms | Allocations: 1451572) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-15 09:28:12 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-15 09:28:12 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-15 09:28:13 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 94.8ms | Allocations: 73896) -Completed 200 OK in 96ms (Views: 95.0ms | Allocations: 74707) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-15 09:28:14 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 71.2ms | Allocations: 73996) -Completed 200 OK in 73ms (Views: 71.4ms | Allocations: 74626) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-15 09:28:14 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 40.5ms | Allocations: 73580) -Completed 200 OK in 41ms (Views: 40.7ms | Allocations: 74202) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-15 09:28:15 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 44.0ms | Allocations: 73643) -Completed 200 OK in 45ms (Views: 44.3ms | Allocations: 74265) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-15 09:28:16 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 41.8ms | Allocations: 73998) -Completed 200 OK in 43ms (Views: 42.1ms | Allocations: 74627) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-15 09:28:16 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610720897.783325 ********************************************* - Rendered inline template (Duration: 1029.6ms | Allocations: 311476) -Completed 200 OK in 1031ms (Views: 1029.9ms | Allocations: 312110) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2021-01-15 09:28:18 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 1.6ms | Allocations: 1777) -Completed 200 OK in 43ms (Views: 42.5ms | Allocations: 74587) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2021-01-15 09:28:18 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (Duration: 40.6ms | Allocations: 74477) -Completed 200 OK in 41ms (Views: 40.8ms | Allocations: 75114) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-15 09:28:19 -0500 -Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2021-01-15 09:28:19 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"9"} - Rendering inline template - Rendered inline template (Duration: 72.4ms | Allocations: 74766) -Completed 200 OK in 73ms (Views: 72.7ms | Allocations: 75397) -Started GET "/assets/factorial-9c6c386c7e12a3c7e87ac624641651a74839b568d510017fc068622d3fb09d4f.js" for 127.0.0.1 at 2021-01-15 09:28:19 -0500 -Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2021-01-15 09:28:20 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"10"} - Rendering inline template - Rendered inline template (Duration: 61.4ms | Allocations: 73646) -Completed 200 OK in 62ms (Views: 61.7ms | Allocations: 74268) -Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2021-01-15 09:28:23 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"11"} - Rendering inline template - Rendered inline template (Duration: 94.7ms | Allocations: 73653) -Completed 200 OK in 96ms (Views: 95.0ms | Allocations: 74275) -Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2021-01-15 09:28:26 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"12"} - Rendering inline template - Rendered inline template (Duration: 39.6ms | Allocations: 74123) -Completed 200 OK in 41ms (Views: 39.9ms | Allocations: 74752) -Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2021-01-15 09:28:27 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"13"} - Rendering inline template - Rendered inline template (Duration: 71.1ms | Allocations: 74118) -Completed 200 OK in 72ms (Views: 71.3ms | Allocations: 74747) -Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2021-01-15 09:28:28 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"14"} - Rendering inline template - Rendered inline template (Duration: 57.1ms | Allocations: 73575) -Completed 200 OK in 58ms (Views: 57.5ms | Allocations: 74197) -Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2021-01-15 09:28:28 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15"} - Rendering inline template - Rendered inline template (Duration: 65.9ms | Allocations: 73574) -Completed 200 OK in 67ms (Views: 66.1ms | Allocations: 74196) -Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2021-01-15 09:28:32 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"16"} - Rendering inline template - Rendered inline template (Duration: 48.0ms | Allocations: 73579) -Completed 200 OK in 49ms (Views: 48.3ms | Allocations: 74201) -Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2021-01-15 09:28:34 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"17"} - Rendering inline template - Rendered inline template (Duration: 39.0ms | Allocations: 73574) -Completed 200 OK in 40ms (Views: 39.4ms | Allocations: 74196) -Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2021-01-15 09:28:34 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"18"} - Rendering inline template - Rendered inline template (Duration: 42.8ms | Allocations: 73574) -Completed 200 OK in 44ms (Views: 43.1ms | Allocations: 74196) -Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2021-01-15 09:28:35 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"19"} - Rendering inline template - Rendered inline template (Duration: 43.4ms | Allocations: 73574) -Completed 200 OK in 44ms (Views: 43.6ms | Allocations: 74196) -Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2021-01-15 09:28:36 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"20"} - Rendering inline template - Rendered inline template (Duration: 38.6ms | Allocations: 73575) -Completed 200 OK in 39ms (Views: 38.9ms | Allocations: 74197) -Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2021-01-15 09:28:36 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"21"} - Rendering inline template - Rendered inline template (Duration: 77.0ms | Allocations: 73588) -Completed 200 OK in 78ms (Views: 77.2ms | Allocations: 74210) -Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2021-01-15 09:28:37 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"22"} - Rendering inline template - Rendered inline template (Duration: 42.7ms | Allocations: 73579) -Completed 200 OK in 43ms (Views: 43.0ms | Allocations: 74201) -Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2021-01-15 09:28:39 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"23"} - Rendering inline template - Rendered inline template (Duration: 38.8ms | Allocations: 73574) -Completed 200 OK in 40ms (Views: 39.1ms | Allocations: 74196) -Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2021-01-15 09:28:39 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"24"} - Rendering inline template - Rendered inline template (Duration: 38.5ms | Allocations: 73574) -Completed 200 OK in 39ms (Views: 38.8ms | Allocations: 74196) -Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2021-01-15 09:28:40 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"25"} - Rendering inline template - Rendered inline template (Duration: 42.2ms | Allocations: 73574) -Completed 200 OK in 43ms (Views: 42.5ms | Allocations: 74196) -Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2021-01-15 09:28:40 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"26"} - Rendering inline template - Rendered inline template (Duration: 41.2ms | Allocations: 73574) -Completed 200 OK in 42ms (Views: 41.5ms | Allocations: 74196) -Started GET "/hyper_spec_test/27" for 127.0.0.1 at 2021-01-15 09:28:41 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"27"} - Rendering inline template - Rendered inline template (Duration: 41.1ms | Allocations: 73579) -Completed 200 OK in 42ms (Views: 41.4ms | Allocations: 74201) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 17:52:20 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1328.6ms | Allocations: 1473006) -Completed 200 OK in 1333ms (Views: 1330.3ms | Allocations: 1474847) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 17:52:21 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-16 17:52:21 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 17:53:21 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1240.4ms | Allocations: 1451050) -Completed 200 OK in 1245ms (Views: 1242.4ms | Allocations: 1452891) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 17:53:22 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-16 17:53:22 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 17:53:45 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1218.6ms | Allocations: 1451046) -Completed 200 OK in 1223ms (Views: 1220.3ms | Allocations: 1452887) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 17:53:46 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-16 17:53:46 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 17:54:02 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1256.2ms | Allocations: 1451049) -Completed 200 OK in 1261ms (Views: 1257.8ms | Allocations: 1452890) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 17:54:03 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-16 17:54:03 -0500 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-16 17:54:28 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 46.2ms | Allocations: 74002) -Completed 200 OK in 47ms (Views: 46.6ms | Allocations: 74632) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-16 17:54:59 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 44.4ms | Allocations: 74010) -Completed 200 OK in 45ms (Views: 44.7ms | Allocations: 74642) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 17:59:34 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 2944.3ms | Allocations: 2368901) -Completed 200 OK in 2948ms (Views: 2945.8ms | Allocations: 2370741) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 17:59:37 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 17:59:37 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:06:13 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1233.7ms | Allocations: 1452853) -Completed 200 OK in 1237ms (Views: 1235.1ms | Allocations: 1454694) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:06:15 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:06:15 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:09:02 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1263.2ms | Allocations: 1452853) -Completed 200 OK in 1267ms (Views: 1264.7ms | Allocations: 1454694) -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:09:03 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:09:03 -0500 -Started GET "/test" for 127.0.0.1 at 2021-01-16 18:10:49 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 1.3ms | Allocations: 458) -Completed 200 OK in 1108ms (Views: 1107.8ms | Allocations: 1453377) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:10:50 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:10:50 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:10:51 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 45.9ms | Allocations: 74552) -Completed 200 OK in 47ms (Views: 46.2ms | Allocations: 75008) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-16 18:10:52 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 45.6ms | Allocations: 74674) -Completed 200 OK in 46ms (Views: 45.8ms | Allocations: 74972) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-16 18:10:52 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 45.0ms | Allocations: 74656) -Completed 200 OK in 46ms (Views: 45.3ms | Allocations: 74953) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-16 18:10:53 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 79.9ms | Allocations: 74701) -Completed 200 OK in 81ms (Views: 80.2ms | Allocations: 74998) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-16 18:10:54 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 42.0ms | Allocations: 74683) -Completed 200 OK in 43ms (Views: 42.4ms | Allocations: 74980) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-16 18:10:55 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610838656.4104981 ********************************************* - Rendered inline template (Duration: 1350.2ms | Allocations: 298203) -Completed 200 OK in 1355ms (Views: 1354.4ms | Allocations: 298505) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2021-01-16 18:10:57 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 1.7ms | Allocations: 1777) -Completed 200 OK in 51ms (Views: 50.3ms | Allocations: 74927) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2021-01-16 18:10:57 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (Duration: 43.6ms | Allocations: 75159) -Completed 200 OK in 44ms (Views: 43.9ms | Allocations: 75464) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-16 18:10:57 -0500 -Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2021-01-16 18:10:58 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"9"} - Rendering inline template - Rendered inline template (Duration: 75.4ms | Allocations: 75866) -Completed 200 OK in 76ms (Views: 75.6ms | Allocations: 76171) -Started GET "/assets/factorial-102125a7e1b156e38a7f308a49fb6b300a5ea4e6aa4980068e4903fdbfdd443c.js" for 127.0.0.1 at 2021-01-16 18:10:58 -0500 -Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2021-01-16 18:10:59 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"10"} - Rendering inline template - Rendered inline template (Duration: 58.6ms | Allocations: 74729) -Completed 200 OK in 60ms (Views: 59.0ms | Allocations: 75026) -Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2021-01-16 18:11:00 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"11"} - Rendering inline template - Rendered inline template (Duration: 115.5ms | Allocations: 74736) -Completed 200 OK in 116ms (Views: 115.8ms | Allocations: 75033) -Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2021-01-16 18:11:01 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"12"} - Rendering inline template - Rendered inline template (Duration: 46.1ms | Allocations: 74804) -Completed 200 OK in 47ms (Views: 46.4ms | Allocations: 75101) -Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2021-01-16 18:11:02 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"13"} - Rendering inline template - Rendered inline template (Duration: 44.9ms | Allocations: 74798) -Completed 200 OK in 46ms (Views: 45.2ms | Allocations: 75095) -Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2021-01-16 18:11:03 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"14"} - Rendering inline template - Rendered inline template (Duration: 43.9ms | Allocations: 74685) -Completed 200 OK in 45ms (Views: 44.2ms | Allocations: 74982) -Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2021-01-16 18:11:04 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15"} - Rendering inline template - Rendered inline template (Duration: 83.8ms | Allocations: 74694) -Completed 200 OK in 85ms (Views: 84.1ms | Allocations: 74991) -Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2021-01-16 18:11:08 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"16"} - Rendering inline template - Rendered inline template (Duration: 45.9ms | Allocations: 74689) -Completed 200 OK in 47ms (Views: 46.3ms | Allocations: 74986) -Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2021-01-16 18:11:10 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"17"} - Rendering inline template - Rendered inline template (Duration: 48.2ms | Allocations: 74684) -Completed 200 OK in 49ms (Views: 48.5ms | Allocations: 74981) -Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2021-01-16 18:11:10 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"18"} - Rendering inline template - Rendered inline template (Duration: 44.1ms | Allocations: 74685) -Completed 200 OK in 45ms (Views: 44.4ms | Allocations: 74982) -Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2021-01-16 18:11:11 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"19"} - Rendering inline template - Rendered inline template (Duration: 53.1ms | Allocations: 74684) -Completed 200 OK in 54ms (Views: 53.5ms | Allocations: 74981) -Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2021-01-16 18:11:12 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"20"} - Rendering inline template - Rendered inline template (Duration: 82.0ms | Allocations: 74694) -Completed 200 OK in 83ms (Views: 82.3ms | Allocations: 74991) -Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2021-01-16 18:11:13 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"21"} - Rendering inline template - Rendered inline template (Duration: 43.7ms | Allocations: 74689) -Completed 200 OK in 44ms (Views: 44.0ms | Allocations: 74986) -Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2021-01-16 18:11:13 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"22"} - Rendering inline template - Rendered inline template (Duration: 45.7ms | Allocations: 74684) -Completed 200 OK in 47ms (Views: 46.0ms | Allocations: 74981) -Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2021-01-16 18:11:25 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"23"} - Rendering inline template - Rendered inline template (Duration: 46.6ms | Allocations: 74684) -Completed 200 OK in 48ms (Views: 47.0ms | Allocations: 75379) -Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2021-01-16 18:11:25 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"24"} - Rendering inline template - Rendered inline template (Duration: 103.6ms | Allocations: 74692) -Completed 200 OK in 105ms (Views: 103.9ms | Allocations: 75321) -Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2021-01-16 18:11:26 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"25"} - Rendering inline template - Rendered inline template (Duration: 44.8ms | Allocations: 74689) -Completed 200 OK in 46ms (Views: 45.1ms | Allocations: 75318) -Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2021-01-16 18:11:27 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"26"} - Rendering inline template - Rendered inline template (Duration: 46.1ms | Allocations: 74684) -Completed 200 OK in 47ms (Views: 46.4ms | Allocations: 75313) -Started GET "/hyper_spec_test/27" for 127.0.0.1 at 2021-01-16 18:11:28 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"27"} - Rendering inline template - Rendered inline template (Duration: 48.7ms | Allocations: 74684) -Completed 200 OK in 50ms (Views: 48.9ms | Allocations: 75313) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:12:19 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1095.9ms | Allocations: 1452745) -Completed 200 OK in 1100ms (Views: 1097.5ms | Allocations: 1454589) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:12:20 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:12:20 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:27:37 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1060.7ms | Allocations: 1452894) -Completed 200 OK in 1065ms (Views: 1062.3ms | Allocations: 1454985) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:27:38 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:27:38 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:53:29 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1089.7ms | Allocations: 1452896) -Completed 200 OK in 1094ms (Views: 1091.8ms | Allocations: 1454986) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:53:30 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:53:30 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:57:55 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1086.9ms | Allocations: 1452896) -Completed 200 OK in 1091ms (Views: 1088.8ms | Allocations: 1454986) -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:57:56 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:57:56 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 18:58:52 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1135.5ms | Allocations: 1452896) -Completed 200 OK in 1140ms (Views: 1137.3ms | Allocations: 1454987) -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 18:58:53 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 18:58:53 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:00:13 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1098.1ms | Allocations: 1452896) -Completed 200 OK in 1103ms (Views: 1099.9ms | Allocations: 1454986) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:00:14 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:00:14 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:01:55 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1149.1ms | Allocations: 1452896) -Completed 200 OK in 1154ms (Views: 1151.0ms | Allocations: 1454986) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:01:56 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:01:56 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:03:59 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1119.8ms | Allocations: 1452896) -Completed 200 OK in 1125ms (Views: 1121.6ms | Allocations: 1454987) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:04:00 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:04:00 -0500 -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-16 19:04:54 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 52.1ms | Allocations: 74663) -Completed 200 OK in 53ms (Views: 52.4ms | Allocations: 76590) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:06:23 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1042.4ms | Allocations: 1452896) -Completed 200 OK in 1046ms (Views: 1043.8ms | Allocations: 1454987) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:06:24 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:06:24 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:07:16 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1032.8ms | Allocations: 1452896) -Completed 200 OK in 1036ms (Views: 1034.3ms | Allocations: 1454987) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:07:17 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:07:17 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:09:19 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1057.3ms | Allocations: 1452919) -Completed 200 OK in 1061ms (Views: 1058.7ms | Allocations: 1455010) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:09:20 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:09:20 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 19:10:31 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1053.8ms | Allocations: 1452920) -Completed 200 OK in 1058ms (Views: 1055.3ms | Allocations: 1455010) -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 19:10:32 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 19:10:32 -0500 -Started GET "/test" for 127.0.0.1 at 2021-01-16 20:59:38 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 1.4ms | Allocations: 458) -Completed 200 OK in 1157ms (Views: 1156.6ms | Allocations: 1453377) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 20:59:39 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 20:59:39 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 20:59:40 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 44.1ms | Allocations: 74575) -Completed 200 OK in 45ms (Views: 44.4ms | Allocations: 75031) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-16 20:59:41 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 46.3ms | Allocations: 74699) -Completed 200 OK in 47ms (Views: 46.6ms | Allocations: 74997) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-16 20:59:41 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 46.0ms | Allocations: 74679) -Completed 200 OK in 47ms (Views: 46.3ms | Allocations: 74976) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-16 20:59:42 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 84.9ms | Allocations: 74727) -Completed 200 OK in 86ms (Views: 85.3ms | Allocations: 75024) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-16 20:59:43 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 43.4ms | Allocations: 74707) -Completed 200 OK in 44ms (Views: 43.7ms | Allocations: 75004) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-16 20:59:43 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610848784.215991 ********************************************* - Rendered inline template (Duration: 278.9ms | Allocations: 78911) -Completed 200 OK in 280ms (Views: 279.3ms | Allocations: 79213) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2021-01-16 20:59:44 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 2.1ms | Allocations: 1797) -Completed 200 OK in 63ms (Views: 62.4ms | Allocations: 74930) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2021-01-16 20:59:45 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (Duration: 60.6ms | Allocations: 75182) -Completed 200 OK in 62ms (Views: 61.0ms | Allocations: 75487) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-16 20:59:45 -0500 -Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2021-01-16 20:59:46 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"9"} - Rendering inline template - Rendered inline template (Duration: 126.7ms | Allocations: 75900) -Completed 200 OK in 128ms (Views: 127.0ms | Allocations: 76205) -Started GET "/assets/factorial-102125a7e1b156e38a7f308a49fb6b300a5ea4e6aa4980068e4903fdbfdd443c.js" for 127.0.0.1 at 2021-01-16 20:59:46 -0500 -Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2021-01-16 20:59:52 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"10"} - Rendering inline template - Rendered inline template (Duration: 55.0ms | Allocations: 74772) -Completed 200 OK in 56ms (Views: 55.4ms | Allocations: 75467) -Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2021-01-16 20:59:53 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"11"} - Rendering inline template - Rendered inline template (Duration: 46.8ms | Allocations: 74823) -Completed 200 OK in 48ms (Views: 47.1ms | Allocations: 75453) -Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2021-01-16 20:59:54 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"12"} - Rendering inline template - Rendered inline template (Duration: 95.3ms | Allocations: 74830) -Completed 200 OK in 96ms (Views: 95.6ms | Allocations: 75459) -Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2021-01-16 20:59:55 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"13"} - Rendering inline template - Rendered inline template (Duration: 42.5ms | Allocations: 74713) -Completed 200 OK in 43ms (Views: 42.8ms | Allocations: 75342) -Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2021-01-16 20:59:56 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"14"} - Rendering inline template - Rendered inline template (Duration: 41.6ms | Allocations: 74708) -Completed 200 OK in 43ms (Views: 41.9ms | Allocations: 75337) -Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2021-01-16 20:59:59 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15"} - Rendering inline template - Rendered inline template (Duration: 45.5ms | Allocations: 74708) -Completed 200 OK in 47ms (Views: 45.8ms | Allocations: 75337) -Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2021-01-16 21:00:01 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"16"} - Rendering inline template - Rendered inline template (Duration: 41.6ms | Allocations: 74708) -Completed 200 OK in 43ms (Views: 41.9ms | Allocations: 75337) -Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2021-01-16 21:00:02 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"17"} - Rendering inline template - Rendered inline template (Duration: 43.1ms | Allocations: 74728) -Completed 200 OK in 44ms (Views: 43.4ms | Allocations: 75357) -Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2021-01-16 21:00:09 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"18"} - Rendering inline template - Rendered inline template (Duration: 41.2ms | Allocations: 74708) -Completed 200 OK in 42ms (Views: 41.5ms | Allocations: 75590) -Started GET "/test" for 127.0.0.1 at 2021-01-16 21:06:35 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 1.1ms | Allocations: 458) -Completed 200 OK in 1160ms (Views: 1159.2ms | Allocations: 1453377) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 21:06:36 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 21:06:36 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 21:06:37 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 46.3ms | Allocations: 74575) -Completed 200 OK in 47ms (Views: 46.6ms | Allocations: 75031) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-16 21:06:38 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 43.6ms | Allocations: 74699) -Completed 200 OK in 45ms (Views: 44.0ms | Allocations: 74997) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-16 21:06:38 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 42.5ms | Allocations: 74679) -Completed 200 OK in 43ms (Views: 42.8ms | Allocations: 74976) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-16 21:06:39 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 82.7ms | Allocations: 74726) -Completed 200 OK in 84ms (Views: 83.0ms | Allocations: 75023) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-16 21:06:40 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 41.6ms | Allocations: 74708) -Completed 200 OK in 42ms (Views: 42.0ms | Allocations: 75005) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-16 21:06:40 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610849201.057987 ********************************************* - Rendered inline template (Duration: 278.0ms | Allocations: 78911) -Completed 200 OK in 279ms (Views: 278.3ms | Allocations: 79213) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2021-01-16 21:06:41 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 2.4ms | Allocations: 1797) -Completed 200 OK in 61ms (Views: 60.5ms | Allocations: 74930) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2021-01-16 21:06:42 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (Duration: 63.5ms | Allocations: 75182) -Completed 200 OK in 64ms (Views: 63.9ms | Allocations: 75487) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-16 21:06:42 -0500 -Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2021-01-16 21:06:42 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"9"} - Rendering inline template - Rendered inline template (Duration: 118.0ms | Allocations: 75900) -Completed 200 OK in 119ms (Views: 118.3ms | Allocations: 76205) -Started GET "/assets/factorial-102125a7e1b156e38a7f308a49fb6b300a5ea4e6aa4980068e4903fdbfdd443c.js" for 127.0.0.1 at 2021-01-16 21:06:43 -0500 -Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2021-01-16 21:06:48 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"10"} - Rendering inline template - Rendered inline template (Duration: 52.2ms | Allocations: 74772) -Completed 200 OK in 53ms (Views: 52.5ms | Allocations: 75467) -Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2021-01-16 21:06:48 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"11"} - Rendering inline template - Rendered inline template (Duration: 43.9ms | Allocations: 74752) -Completed 200 OK in 45ms (Views: 44.2ms | Allocations: 75382) -Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2021-01-16 21:06:49 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"12"} - Rendering inline template - Rendered inline template (Duration: 43.0ms | Allocations: 74823) -Completed 200 OK in 44ms (Views: 43.3ms | Allocations: 75452) -Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2021-01-16 21:06:50 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"13"} - Rendering inline template - Rendered inline template (Duration: 42.2ms | Allocations: 74842) -Completed 200 OK in 43ms (Views: 42.5ms | Allocations: 75472) -Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2021-01-16 21:06:51 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"14"} - Rendering inline template - Rendered inline template (Duration: 42.4ms | Allocations: 74708) -Completed 200 OK in 43ms (Views: 42.7ms | Allocations: 75337) -Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2021-01-16 21:06:52 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15"} - Rendering inline template - Rendered inline template (Duration: 41.9ms | Allocations: 74708) -Completed 200 OK in 43ms (Views: 42.2ms | Allocations: 75337) -Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2021-01-16 21:06:55 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"16"} - Rendering inline template - Rendered inline template (Duration: 41.1ms | Allocations: 74708) -Completed 200 OK in 42ms (Views: 41.6ms | Allocations: 75337) -Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2021-01-16 21:06:57 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"17"} - Rendering inline template - Rendered inline template (Duration: 76.2ms | Allocations: 74732) -Completed 200 OK in 77ms (Views: 76.5ms | Allocations: 75361) -Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2021-01-16 21:06:58 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"18"} - Rendering inline template - Rendered inline template (Duration: 45.4ms | Allocations: 74712) -Completed 200 OK in 46ms (Views: 45.7ms | Allocations: 75341) -Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2021-01-16 21:06:58 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"19"} - Rendering inline template - Rendered inline template (Duration: 40.0ms | Allocations: 74708) -Completed 200 OK in 41ms (Views: 40.3ms | Allocations: 75337) -Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2021-01-16 21:06:59 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"20"} - Rendering inline template - Rendered inline template (Duration: 40.7ms | Allocations: 74708) -Completed 200 OK in 42ms (Views: 41.0ms | Allocations: 75337) -Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2021-01-16 21:07:00 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"21"} - Rendering inline template - Rendered inline template (Duration: 41.5ms | Allocations: 74708) -Completed 200 OK in 56ms (Views: 55.7ms | Allocations: 75337) -Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2021-01-16 21:07:00 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"22"} - Rendering inline template - Rendered inline template (Duration: 41.8ms | Allocations: 74728) -Completed 200 OK in 43ms (Views: 42.1ms | Allocations: 75358) -Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2021-01-16 21:07:06 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"23"} - Rendering inline template - Rendered inline template (Duration: 53.2ms | Allocations: 74708) -Completed 200 OK in 54ms (Views: 53.5ms | Allocations: 75590) -Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2021-01-16 21:07:07 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"24"} - Rendering inline template - Rendered inline template (Duration: 40.7ms | Allocations: 74708) -Completed 200 OK in 42ms (Views: 41.0ms | Allocations: 75590) -Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2021-01-16 21:07:08 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"25"} - Rendering inline template - Rendered inline template (Duration: 44.8ms | Allocations: 74708) -Completed 200 OK in 46ms (Views: 45.1ms | Allocations: 75590) -Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2021-01-16 21:07:08 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"26"} - Rendering inline template - Rendered inline template (Duration: 44.5ms | Allocations: 74708) -Completed 200 OK in 46ms (Views: 44.8ms | Allocations: 75590) -Started GET "/hyper_spec_test/27" for 127.0.0.1 at 2021-01-16 21:07:09 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"27"} - Rendering inline template - Rendered inline template (Duration: 42.3ms | Allocations: 74728) -Completed 200 OK in 43ms (Views: 42.6ms | Allocations: 75611) -Started GET "/test" for 127.0.0.1 at 2021-01-16 21:11:41 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 1.1ms | Allocations: 458) -Completed 200 OK in 1154ms (Views: 1153.5ms | Allocations: 1453377) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-16 21:11:42 -0500 -Started GET "/assets/application-96d15ea2388c18e60f1f72ed68e88727d6a843592086f31812d12860b2b2e322.js" for 127.0.0.1 at 2021-01-16 21:11:42 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-16 21:11:43 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 42.7ms | Allocations: 74575) -Completed 200 OK in 44ms (Views: 43.1ms | Allocations: 75031) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-16 21:11:43 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 46.5ms | Allocations: 74699) -Completed 200 OK in 47ms (Views: 46.7ms | Allocations: 74997) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-16 21:11:44 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 42.7ms | Allocations: 74679) -Completed 200 OK in 44ms (Views: 43.0ms | Allocations: 74976) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-16 21:11:45 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 79.5ms | Allocations: 74726) -Completed 200 OK in 80ms (Views: 79.8ms | Allocations: 75023) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-16 21:11:45 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 39.4ms | Allocations: 74708) -Completed 200 OK in 40ms (Views: 39.7ms | Allocations: 75005) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-16 21:11:46 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610849506.772907 ********************************************* - Rendered inline template (Duration: 269.2ms | Allocations: 78912) -Completed 200 OK in 270ms (Views: 269.9ms | Allocations: 79214) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2021-01-16 21:11:47 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 2.3ms | Allocations: 1797) -Completed 200 OK in 56ms (Views: 54.9ms | Allocations: 74930) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2021-01-16 21:11:48 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (Duration: 60.3ms | Allocations: 75182) -Completed 200 OK in 61ms (Views: 60.6ms | Allocations: 75487) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-16 21:11:48 -0500 -Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2021-01-16 21:11:48 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"9"} - Rendering inline template - Rendered inline template (Duration: 119.9ms | Allocations: 75900) -Completed 200 OK in 121ms (Views: 120.2ms | Allocations: 76205) -Started GET "/assets/factorial-102125a7e1b156e38a7f308a49fb6b300a5ea4e6aa4980068e4903fdbfdd443c.js" for 127.0.0.1 at 2021-01-16 21:11:48 -0500 -Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2021-01-16 21:11:49 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"10"} - Rendering inline template - Rendered inline template (Duration: 49.0ms | Allocations: 74772) -Completed 200 OK in 50ms (Views: 49.3ms | Allocations: 75069) -Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2021-01-16 21:11:52 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"11"} - Rendering inline template - Rendered inline template (Duration: 43.8ms | Allocations: 74752) -Completed 200 OK in 45ms (Views: 44.1ms | Allocations: 75049) -Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2021-01-16 21:11:55 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"12"} - Rendering inline template - Rendered inline template (Duration: 43.3ms | Allocations: 74823) -Completed 200 OK in 44ms (Views: 43.5ms | Allocations: 75120) -Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2021-01-16 21:11:56 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"13"} - Rendering inline template - Rendered inline template (Duration: 79.4ms | Allocations: 74834) -Completed 200 OK in 80ms (Views: 79.7ms | Allocations: 75131) -Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2021-01-16 21:11:57 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"14"} - Rendering inline template - Rendered inline template (Duration: 41.9ms | Allocations: 74712) -Completed 200 OK in 43ms (Views: 42.2ms | Allocations: 75009) -Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2021-01-16 21:11:57 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15"} - Rendering inline template - Rendered inline template (Duration: 42.3ms | Allocations: 74708) -Completed 200 OK in 43ms (Views: 42.6ms | Allocations: 75005) -Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2021-01-16 21:12:01 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"16"} - Rendering inline template - Rendered inline template (Duration: 41.8ms | Allocations: 74708) -Completed 200 OK in 43ms (Views: 42.1ms | Allocations: 75005) -Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2021-01-16 21:12:03 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"17"} - Rendering inline template - Rendered inline template (Duration: 41.1ms | Allocations: 74708) -Completed 200 OK in 42ms (Views: 41.3ms | Allocations: 75005) -Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2021-01-16 21:12:03 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"18"} - Rendering inline template - Rendered inline template (Duration: 45.6ms | Allocations: 74728) -Completed 200 OK in 46ms (Views: 45.8ms | Allocations: 75025) -Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2021-01-16 21:12:04 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"19"} - Rendering inline template - Rendered inline template (Duration: 46.2ms | Allocations: 74708) -Completed 200 OK in 47ms (Views: 46.5ms | Allocations: 75005) -Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2021-01-16 21:12:05 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"20"} - Rendering inline template - Rendered inline template (Duration: 40.4ms | Allocations: 74708) -Completed 200 OK in 41ms (Views: 40.7ms | Allocations: 75005) -Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2021-01-16 21:12:05 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"21"} - Rendering inline template - Rendered inline template (Duration: 41.7ms | Allocations: 74708) -Completed 200 OK in 43ms (Views: 42.0ms | Allocations: 75005) -Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2021-01-16 21:12:06 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"22"} - Rendering inline template - Rendered inline template (Duration: 43.2ms | Allocations: 74708) -Completed 200 OK in 44ms (Views: 43.5ms | Allocations: 75005) -Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2021-01-16 21:12:08 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"23"} - Rendering inline template - Rendered inline template (Duration: 44.3ms | Allocations: 74728) -Completed 200 OK in 45ms (Views: 44.6ms | Allocations: 75025) -Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2021-01-16 21:12:08 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"24"} - Rendering inline template - Rendered inline template (Duration: 41.1ms | Allocations: 74708) -Completed 200 OK in 42ms (Views: 41.4ms | Allocations: 75005) -Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2021-01-16 21:12:09 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"25"} - Rendering inline template - Rendered inline template (Duration: 42.9ms | Allocations: 74708) -Completed 200 OK in 44ms (Views: 43.2ms | Allocations: 75005) -Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2021-01-16 21:12:10 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"26"} - Rendering inline template - Rendered inline template (Duration: 42.9ms | Allocations: 74708) -Completed 200 OK in 44ms (Views: 43.2ms | Allocations: 75005) -Started GET "/hyper_spec_test/27" for 127.0.0.1 at 2021-01-16 21:12:10 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"27"} - Rendering inline template - Rendered inline template (Duration: 49.0ms | Allocations: 74708) -Completed 200 OK in 52ms (Views: 51.0ms | Allocations: 75005) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:24:40 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1980.8ms | Allocations: 1499894) -Completed 200 OK in 1985ms (Views: 1982.8ms | Allocations: 1501337) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:24:42 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:24:42 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:27:31 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1057.9ms | Allocations: 1451161) -Completed 200 OK in 1062ms (Views: 1059.6ms | Allocations: 1452604) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:27:32 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:27:32 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:28:16 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 955.4ms | Allocations: 1451161) -Completed 200 OK in 959ms (Views: 956.9ms | Allocations: 1452604) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:28:17 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:28:17 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:30:17 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 988.0ms | Allocations: 1451160) -Completed 200 OK in 992ms (Views: 989.7ms | Allocations: 1452603) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:30:18 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:30:18 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:32:21 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1209.4ms | Allocations: 1451159) -Completed 200 OK in 1216ms (Views: 1212.5ms | Allocations: 1453253) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:32:22 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:32:22 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:34:41 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1039.7ms | Allocations: 1451161) -Completed 200 OK in 1043ms (Views: 1041.2ms | Allocations: 1452604) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:34:42 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:34:42 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:41:57 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1044.0ms | Allocations: 1451161) -Completed 200 OK in 1047ms (Views: 1045.6ms | Allocations: 1452604) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:41:58 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:41:58 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:43:19 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1040.9ms | Allocations: 1451161) -Completed 200 OK in 1044ms (Views: 1042.3ms | Allocations: 1452604) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:43:20 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:43:20 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:43:50 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1025.7ms | Allocations: 1451161) -Completed 200 OK in 1029ms (Views: 1027.5ms | Allocations: 1452604) -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:43:52 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:43:52 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:44:15 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1029.8ms | Allocations: 1451160) -Completed 200 OK in 1033ms (Views: 1031.2ms | Allocations: 1452603) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:44:16 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:44:16 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:46:17 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1036.8ms | Allocations: 1451160) -Completed 200 OK in 1040ms (Views: 1038.2ms | Allocations: 1452603) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:46:18 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:46:18 -0500 -Started GET "/test" for 127.0.0.1 at 2021-01-17 17:48:03 -0500 -Processing by TestController#show as HTML - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 0.9ms | Allocations: 458) -Completed 200 OK in 1052ms (Views: 1051.3ms | Allocations: 1451682) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:48:04 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:48:04 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:48:04 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 43.0ms | Allocations: 73936) -Completed 200 OK in 44ms (Views: 43.4ms | Allocations: 74392) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-17 17:48:05 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 43.7ms | Allocations: 74059) -Completed 200 OK in 45ms (Views: 44.0ms | Allocations: 74357) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-17 17:48:06 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 41.6ms | Allocations: 74039) -Completed 200 OK in 42ms (Views: 41.9ms | Allocations: 74336) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-17 17:48:07 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 47.8ms | Allocations: 74080) -Completed 200 OK in 49ms (Views: 48.1ms | Allocations: 74377) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-17 17:48:07 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 79.6ms | Allocations: 74071) -Completed 200 OK in 80ms (Views: 79.9ms | Allocations: 74368) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-17 17:48:08 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template -************************** React Server Context Initialized SayHello 1610923688.726614 ********************************************* - Rendered inline template (Duration: 406.3ms | Allocations: 113187) -Completed 200 OK in 407ms (Views: 406.6ms | Allocations: 113489) -Started GET "/hyper_spec_test/7" for 127.0.0.1 at 2021-01-17 17:48:09 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"7"} - Rendering inline template within layouts/application - Rendered inline template within layouts/application (Duration: 1.7ms | Allocations: 1773) -Completed 200 OK in 69ms (Views: 68.2ms | Allocations: 74290) -Started GET "/hyper_spec_test/8" for 127.0.0.1 at 2021-01-17 17:48:09 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"8"} - Rendering inline template - Rendered inline template (Duration: 58.5ms | Allocations: 74542) -Completed 200 OK in 59ms (Views: 58.7ms | Allocations: 74847) -Started GET "/assets/test-23c09e540c498cf230db0d147754389b4131f7f898582df247c29a021ae8b58c.css" for 127.0.0.1 at 2021-01-17 17:48:10 -0500 -Started GET "/hyper_spec_test/9" for 127.0.0.1 at 2021-01-17 17:48:10 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"9"} - Rendering inline template - Rendered inline template (Duration: 65.3ms | Allocations: 75250) -Completed 200 OK in 66ms (Views: 65.6ms | Allocations: 75555) -Started GET "/assets/factorial-9c6c386c7e12a3c7e87ac624641651a74839b568d510017fc068622d3fb09d4f.js" for 127.0.0.1 at 2021-01-17 17:48:10 -0500 -Started GET "/hyper_spec_test/10" for 127.0.0.1 at 2021-01-17 17:48:11 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"10"} - Rendering inline template - Rendered inline template (Duration: 41.0ms | Allocations: 74134) -Completed 200 OK in 42ms (Views: 41.3ms | Allocations: 74433) -Started GET "/hyper_spec_test/11" for 127.0.0.1 at 2021-01-17 17:48:14 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"11"} - Rendering inline template - Rendered inline template (Duration: 40.0ms | Allocations: 74112) -Completed 200 OK in 41ms (Views: 40.3ms | Allocations: 74409) -Started GET "/hyper_spec_test/12" for 127.0.0.1 at 2021-01-17 17:48:17 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"12"} - Rendering inline template - Rendered inline template (Duration: 56.7ms | Allocations: 74183) -Completed 200 OK in 57ms (Views: 56.9ms | Allocations: 74480) -Started GET "/hyper_spec_test/13" for 127.0.0.1 at 2021-01-17 17:48:18 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"13"} - Rendering inline template - Rendered inline template (Duration: 71.1ms | Allocations: 74182) -Completed 200 OK in 72ms (Views: 71.4ms | Allocations: 74479) -Started GET "/hyper_spec_test/14" for 127.0.0.1 at 2021-01-17 17:48:19 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"14"} - Rendering inline template - Rendered inline template (Duration: 41.4ms | Allocations: 74103) -Completed 200 OK in 42ms (Views: 41.7ms | Allocations: 74402) -Started GET "/hyper_spec_test/15" for 127.0.0.1 at 2021-01-17 17:48:19 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"15"} - Rendering inline template - Rendered inline template (Duration: 43.1ms | Allocations: 74068) -Completed 200 OK in 44ms (Views: 43.4ms | Allocations: 74365) -Started GET "/hyper_spec_test/16" for 127.0.0.1 at 2021-01-17 17:48:23 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"16"} - Rendering inline template - Rendered inline template (Duration: 40.9ms | Allocations: 74069) -Completed 200 OK in 42ms (Views: 41.2ms | Allocations: 74366) -Started GET "/hyper_spec_test/17" for 127.0.0.1 at 2021-01-17 17:48:25 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"17"} - Rendering inline template - Rendered inline template (Duration: 38.7ms | Allocations: 74068) -Completed 200 OK in 40ms (Views: 39.0ms | Allocations: 74365) -Started GET "/hyper_spec_test/18" for 127.0.0.1 at 2021-01-17 17:48:25 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"18"} - Rendering inline template - Rendered inline template (Duration: 73.8ms | Allocations: 74080) -Completed 200 OK in 75ms (Views: 74.1ms | Allocations: 74377) -Started GET "/hyper_spec_test/19" for 127.0.0.1 at 2021-01-17 17:48:26 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"19"} - Rendering inline template - Rendered inline template (Duration: 41.2ms | Allocations: 74073) -Completed 200 OK in 42ms (Views: 41.5ms | Allocations: 74370) -Started GET "/hyper_spec_test/20" for 127.0.0.1 at 2021-01-17 17:48:27 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"20"} - Rendering inline template - Rendered inline template (Duration: 41.0ms | Allocations: 74068) -Completed 200 OK in 42ms (Views: 41.3ms | Allocations: 74365) -Started GET "/hyper_spec_test/21" for 127.0.0.1 at 2021-01-17 17:48:27 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"21"} - Rendering inline template - Rendered inline template (Duration: 41.3ms | Allocations: 74068) -Completed 200 OK in 42ms (Views: 41.7ms | Allocations: 74365) -Started GET "/hyper_spec_test/22" for 127.0.0.1 at 2021-01-17 17:48:28 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"22"} - Rendering inline template - Rendered inline template (Duration: 41.5ms | Allocations: 74068) -Completed 200 OK in 42ms (Views: 41.8ms | Allocations: 74365) -Started GET "/hyper_spec_test/23" for 127.0.0.1 at 2021-01-17 17:48:30 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"23"} - Rendering inline template - Rendered inline template (Duration: 76.3ms | Allocations: 74078) -Completed 200 OK in 77ms (Views: 76.7ms | Allocations: 74375) -Started GET "/hyper_spec_test/24" for 127.0.0.1 at 2021-01-17 17:48:30 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"24"} - Rendering inline template - Rendered inline template (Duration: 43.3ms | Allocations: 74073) -Completed 200 OK in 44ms (Views: 43.6ms | Allocations: 74370) -Started GET "/hyper_spec_test/25" for 127.0.0.1 at 2021-01-17 17:48:31 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"25"} - Rendering inline template - Rendered inline template (Duration: 41.8ms | Allocations: 74068) -Completed 200 OK in 43ms (Views: 42.2ms | Allocations: 74365) -Started GET "/hyper_spec_test/26" for 127.0.0.1 at 2021-01-17 17:48:32 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"26"} - Rendering inline template - Rendered inline template (Duration: 43.4ms | Allocations: 74068) -Completed 200 OK in 44ms (Views: 43.8ms | Allocations: 74365) -Started GET "/hyper_spec_test/27" for 127.0.0.1 at 2021-01-17 17:48:32 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"27"} - Rendering inline template - Rendered inline template (Duration: 39.5ms | Allocations: 74068) -Completed 200 OK in 40ms (Views: 39.8ms | Allocations: 74365) -Started GET "/hyper_spec_test/28" for 127.0.0.1 at 2021-01-17 17:48:33 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"28"} - Rendering inline template - Rendered inline template (Duration: 40.9ms | Allocations: 74068) -Completed 200 OK in 42ms (Views: 41.2ms | Allocations: 74365) -Started GET "/hyper_spec_test/29" for 127.0.0.1 at 2021-01-17 17:48:34 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"29"} - Rendering inline template - Rendered inline template (Duration: 47.9ms | Allocations: 74103) -Completed 200 OK in 49ms (Views: 48.2ms | Allocations: 74402) -Started GET "/hyper_spec_test/30" for 127.0.0.1 at 2021-01-17 17:48:34 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"30"} - Rendering inline template - Rendered inline template (Duration: 40.9ms | Allocations: 74068) -Completed 200 OK in 42ms (Views: 41.2ms | Allocations: 74365) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 17:51:36 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1045.4ms | Allocations: 1451161) -Completed 200 OK in 1049ms (Views: 1047.2ms | Allocations: 1452604) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 17:51:37 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 17:51:37 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 21:48:06 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1269.2ms | Allocations: 1451159) -Completed 200 OK in 1274ms (Views: 1271.8ms | Allocations: 1453000) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 21:48:08 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 21:48:08 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-17 21:52:32 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1259.7ms | Allocations: 1451159) -Completed 200 OK in 1264ms (Views: 1261.6ms | Allocations: 1453000) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-17 21:52:34 -0500 -Started GET "/assets/application-85cac0949d5734bc4d61a85c6ab90d77cc6b70d86f59972517ae168fe59b5397.js" for 127.0.0.1 at 2021-01-17 21:52:34 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 13:53:45 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1231.7ms | Allocations: 1347448) -Completed 500 Internal Server Error in 1236ms (Allocations: 1348872) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 13:58:40 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 8229.0ms | Allocations: 11862157) -Completed 200 OK in 8232ms (Views: 8230.3ms | Allocations: 11863599) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 13:58:49 -0500 -Started GET "/assets/application-2d1f95aaedc98892d891a16356fc6b5bab91d1f475f84e3d6c698e183247acc6.js" for 127.0.0.1 at 2021-01-20 13:58:49 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:02:36 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 2929.7ms | Allocations: 2138738) -Completed 200 OK in 2933ms (Views: 2931.5ms | Allocations: 2140181) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:02:39 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:02:39 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:04:35 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1062.7ms | Allocations: 1535321) -Completed 200 OK in 1067ms (Views: 1065.2ms | Allocations: 1536764) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:04:36 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:04:36 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 14:05:04 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 14:10:08 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 14:10:28 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:11:09 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1406.3ms | Allocations: 1535320) -Completed 200 OK in 1410ms (Views: 1408.1ms | Allocations: 1536763) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:11:10 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:11:10 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 14:11:11 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:14:11 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1174.6ms | Allocations: 1535320) -Completed 200 OK in 1178ms (Views: 1176.3ms | Allocations: 1536763) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:14:12 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:14:12 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 14:14:13 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:19:47 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1299.1ms | Allocations: 1535321) -Completed 200 OK in 1304ms (Views: 1301.3ms | Allocations: 1536764) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:19:48 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:19:48 -0500 -Started GET "/hyper_spec_test/404.html" for 127.0.0.1 at 2021-01-20 14:19:49 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"404"} -Completed 500 Internal Server Error in 5ms (Allocations: 624) -Started GET "/hyper_spec_test/404.html" for 127.0.0.1 at 2021-01-20 14:19:57 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"404"} -Completed 500 Internal Server Error in 1ms (Allocations: 619) -Started GET "/hyper_spec_test/404.html" for 127.0.0.1 at 2021-01-20 14:21:12 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"404"} -Completed 500 Internal Server Error in 1ms (Allocations: 619) -Started GET "/hyper_spec_test/404.htmlz" for 127.0.0.1 at 2021-01-20 14:21:40 -0500 -Processing by HyperSpecTestController#test as - Parameters: {"id"=>"404"} -Completed 500 Internal Server Error in 1ms (Allocations: 620) -Started GET "/hyper_spec_test/404.html" for 127.0.0.1 at 2021-01-20 14:22:27 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"404"} -Completed 500 Internal Server Error in 1ms (Allocations: 619) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:24:58 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1265.0ms | Allocations: 1535321) -Completed 200 OK in 1270ms (Views: 1268.2ms | Allocations: 1536764) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:25:00 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:25:00 -0500 -Started GET "/hyper_spec_test/ping" for 127.0.0.1 at 2021-01-20 14:26:01 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"ping"} -Completed 204 No Content in 0ms (Allocations: 51) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 14:26:01 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 119.8ms | Allocations: 97338) -Completed 200 OK in 121ms (Views: 120.1ms | Allocations: 97637) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:27:49 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1173.0ms | Allocations: 1535320) -Completed 200 OK in 1177ms (Views: 1174.8ms | Allocations: 1536763) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:27:50 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:27:51 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:30:33 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1146.7ms | Allocations: 1535320) -Completed 200 OK in 1150ms (Views: 1148.4ms | Allocations: 1536763) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:30:34 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:30:34 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 14:35:16 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1287.0ms | Allocations: 1535320) -Completed 200 OK in 1290ms (Views: 1288.5ms | Allocations: 1536763) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 14:35:17 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 14:35:17 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:19:08 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1366.4ms | Allocations: 1535322) -Completed 200 OK in 1372ms (Views: 1368.7ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:19:09 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:19:09 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 15:19:10 -0500 -Processing by TestController#http as JS -Completed 500 Internal Server Error in 109ms (Allocations: 56588) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:20:06 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1156.9ms | Allocations: 1535320) -Completed 200 OK in 1160ms (Views: 1158.4ms | Allocations: 1536763) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:20:07 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:20:07 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 15:20:08 -0500 -Processing by TestController#http as JS -Completed 500 Internal Server Error in 2ms (Allocations: 1227) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:22:16 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1091.2ms | Allocations: 1535321) -Completed 200 OK in 1094ms (Views: 1092.5ms | Allocations: 1536764) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:22:17 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:22:17 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 15:22:18 -0500 -Processing by TestController#http as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 467) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:30:34 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1339.3ms | Allocations: 1535322) -Completed 200 OK in 1343ms (Views: 1341.0ms | Allocations: 1536765) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:30:36 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:30:36 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:31:18 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1310.8ms | Allocations: 1535321) -Completed 200 OK in 1314ms (Views: 1312.2ms | Allocations: 1536764) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:31:19 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:31:19 -0500 -Started POST "/http" for 127.0.0.1 at 2021-01-20 15:31:20 -0500 -Processing by TestController#post as JS - Parameters: {"lol"=>"wut"} -Completed 500 Internal Server Error in 33693ms (Allocations: 60217) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:32:34 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1307.1ms | Allocations: 1535321) -Completed 200 OK in 1310ms (Views: 1308.3ms | Allocations: 1536764) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:32:36 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:32:36 -0500 -Started POST "/http" for 127.0.0.1 at 2021-01-20 15:32:37 -0500 -Processing by TestController#post as JS - Parameters: {"lol"=>"wut"} -No template found for TestController#post, rendering head :no_content -Completed 204 No Content in 1ms (Allocations: 624) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:33:09 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1336.0ms | Allocations: 1535321) -Completed 200 OK in 1340ms (Views: 1337.6ms | Allocations: 1536764) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:33:10 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:33:10 -0500 -Started POST "/http" for 127.0.0.1 at 2021-01-20 15:33:11 -0500 -Processing by TestController#post as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 1.2ms | Allocations: 471) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:35:21 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1435.7ms | Allocations: 1535323) -Completed 200 OK in 1439ms (Views: 1437.1ms | Allocations: 1536766) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:35:23 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:35:23 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 15:35:24 -0500 -Processing by TestController#get as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 467) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:36:41 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1264.8ms | Allocations: 1535322) -Completed 200 OK in 1268ms (Views: 1266.2ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:36:43 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:36:43 -0500 -Started PUT "/http" for 127.0.0.1 at 2021-01-20 15:36:43 -0500 -Processing by TestController#post as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 471) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:38:31 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1297.6ms | Allocations: 1535322) -Completed 200 OK in 1301ms (Views: 1299.1ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:38:32 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:38:32 -0500 -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 15:38:33 -0500 -Processing by TestController#get as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 459) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:38:50 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1287.4ms | Allocations: 1535322) -Completed 200 OK in 1291ms (Views: 1288.8ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:38:51 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:38:51 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 15:38:52 -0500 -Processing by TestController#get as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 15:38:52 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 56.0ms | Allocations: 97333) -Completed 200 OK in 57ms (Views: 56.3ms | Allocations: 97631) -Started POST "/http" for 127.0.0.1 at 2021-01-20 15:38:53 -0500 -Processing by TestController#post as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 15:38:53 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 58.6ms | Allocations: 97327) -Completed 200 OK in 59ms (Views: 58.9ms | Allocations: 97624) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 15:38:54 -0500 -Processing by TestController#post as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 15:38:54 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 55.6ms | Allocations: 97327) -Completed 200 OK in 56ms (Views: 55.9ms | Allocations: 97624) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 15:38:54 -0500 -Processing by TestController#get as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:42:10 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1290.0ms | Allocations: 1535322) -Completed 200 OK in 1295ms (Views: 1292.0ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:42:11 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:42:11 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 15:42:12 -0500 -Processing by TestController#get as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 15:42:12 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 54.5ms | Allocations: 97333) -Completed 200 OK in 55ms (Views: 54.8ms | Allocations: 97631) -Started POST "/http" for 127.0.0.1 at 2021-01-20 15:42:13 -0500 -Processing by TestController#post as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 15:42:13 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 56.5ms | Allocations: 97328) -Completed 200 OK in 57ms (Views: 56.8ms | Allocations: 97625) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 15:42:13 -0500 -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 15:42:13 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 58.0ms | Allocations: 97327) -Completed 200 OK in 59ms (Views: 58.2ms | Allocations: 97624) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 15:42:14 -0500 -Processing by TestController#post as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 15:42:14 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 57.2ms | Allocations: 97332) -Completed 200 OK in 58ms (Views: 57.4ms | Allocations: 97629) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 15:42:15 -0500 -Processing by TestController#get as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:44:04 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1273.0ms | Allocations: 1535322) -Completed 200 OK in 1276ms (Views: 1274.5ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:44:05 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:44:05 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 15:44:06 -0500 -Processing by TestController#get as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 15:44:06 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 59.2ms | Allocations: 97333) -Completed 200 OK in 60ms (Views: 59.5ms | Allocations: 97631) -Started POST "/http" for 127.0.0.1 at 2021-01-20 15:44:07 -0500 -Processing by TestController#post as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 15:44:07 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 58.8ms | Allocations: 97328) -Completed 200 OK in 60ms (Views: 59.1ms | Allocations: 97625) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 15:44:07 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 298732ms (Views: 2.4ms | Allocations: 181564) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 15:49:06 -0500 -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 15:49:07 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:49:18 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1389.9ms | Allocations: 1535323) -Completed 200 OK in 1394ms (Views: 1392.0ms | Allocations: 1536766) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:49:20 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:49:20 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 15:49:20 -0500 -Processing by TestController#get as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 15:49:21 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 62.1ms | Allocations: 97333) -Completed 200 OK in 63ms (Views: 62.4ms | Allocations: 97631) -Started POST "/http" for 127.0.0.1 at 2021-01-20 15:49:21 -0500 -Processing by TestController#post as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 15:49:22 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 56.4ms | Allocations: 97328) -Completed 200 OK in 57ms (Views: 56.7ms | Allocations: 97625) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 15:49:22 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 15:49:22 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 58.3ms | Allocations: 97327) -Completed 200 OK in 59ms (Views: 58.5ms | Allocations: 97624) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 15:49:23 -0500 -Processing by TestController#post as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 15:49:23 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 58.1ms | Allocations: 97332) -Completed 200 OK in 59ms (Views: 58.4ms | Allocations: 97629) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 15:49:23 -0500 -Processing by TestController#get as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:50:28 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1203.7ms | Allocations: 1535322) -Completed 200 OK in 1207ms (Views: 1205.0ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:50:29 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:50:29 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 15:50:30 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 15:50:30 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 61.0ms | Allocations: 97334) -Completed 200 OK in 62ms (Views: 61.3ms | Allocations: 97632) -Started POST "/http" for 127.0.0.1 at 2021-01-20 15:50:31 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 15:50:31 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 57.7ms | Allocations: 97328) -Completed 200 OK in 59ms (Views: 58.0ms | Allocations: 97625) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 15:50:31 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 15:50:31 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 58.2ms | Allocations: 97327) -Completed 200 OK in 59ms (Views: 58.6ms | Allocations: 97624) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 15:50:32 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 15:50:32 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 92.1ms | Allocations: 97332) -Completed 200 OK in 93ms (Views: 92.5ms | Allocations: 97629) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 15:50:33 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 15:58:42 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1136.1ms | Allocations: 1535322) -Completed 200 OK in 1139ms (Views: 1137.3ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 15:58:43 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 15:58:43 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:02:13 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1254.1ms | Allocations: 1535330) -Completed 200 OK in 1258ms (Views: 1256.1ms | Allocations: 1536780) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:02:14 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:02:14 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:15:49 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1146.1ms | Allocations: 1535329) -Completed 200 OK in 1150ms (Views: 1147.5ms | Allocations: 1536779) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:15:50 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:15:50 -0500 -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:27:05 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1308.4ms | Allocations: 1535322) -Completed 200 OK in 1312ms (Views: 1310.1ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:27:06 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:27:06 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 16:27:07 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 4ms (Views: 3.5ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:27:07 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 58.6ms | Allocations: 97334) -Completed 200 OK in 59ms (Views: 58.9ms | Allocations: 97632) -Started POST "/http" for 127.0.0.1 at 2021-01-20 16:27:08 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:27:08 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 56.1ms | Allocations: 97328) -Completed 200 OK in 57ms (Views: 56.4ms | Allocations: 97625) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:27:09 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:27:09 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 56.4ms | Allocations: 97327) -Completed 200 OK in 57ms (Views: 56.8ms | Allocations: 97624) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:27:09 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:27:09 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 59.8ms | Allocations: 97327) -Completed 200 OK in 61ms (Views: 60.1ms | Allocations: 97624) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:27:10 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:27:10 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 98.8ms | Allocations: 97344) -Completed 200 OK in 100ms (Views: 99.1ms | Allocations: 97649) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:30:44 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1315.4ms | Allocations: 1535322) -Completed 200 OK in 1319ms (Views: 1317.1ms | Allocations: 1536765) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:30:45 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:30:45 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 16:30:46 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 4ms (Views: 3.4ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:30:46 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 59.4ms | Allocations: 97333) -Completed 200 OK in 60ms (Views: 59.7ms | Allocations: 97631) -Started POST "/http" for 127.0.0.1 at 2021-01-20 16:30:47 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:30:47 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 59.5ms | Allocations: 97328) -Completed 200 OK in 60ms (Views: 59.8ms | Allocations: 97625) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:30:48 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:30:48 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 59.6ms | Allocations: 97327) -Completed 200 OK in 60ms (Views: 59.9ms | Allocations: 97624) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:30:48 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:30:49 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 99.9ms | Allocations: 97333) -Completed 200 OK in 101ms (Views: 100.2ms | Allocations: 97630) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:30:49 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:30:49 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 55.3ms | Allocations: 97341) -Completed 200 OK in 56ms (Views: 55.6ms | Allocations: 97645) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:32:01 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1048.9ms | Allocations: 1535321) -Completed 200 OK in 1052ms (Views: 1050.2ms | Allocations: 1536764) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:32:02 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:32:02 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 16:32:03 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:32:03 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 83.6ms | Allocations: 97333) -Completed 200 OK in 84ms (Views: 83.8ms | Allocations: 97631) -Started POST "/http" for 127.0.0.1 at 2021-01-20 16:32:04 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:32:04 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 103.8ms | Allocations: 97333) -Completed 200 OK in 105ms (Views: 104.0ms | Allocations: 97630) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:32:04 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:32:05 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 136.3ms | Allocations: 97331) -Completed 200 OK in 137ms (Views: 136.6ms | Allocations: 97628) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:32:05 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:32:05 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 56.9ms | Allocations: 97332) -Completed 200 OK in 58ms (Views: 57.1ms | Allocations: 97629) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:32:06 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:32:06 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 56.3ms | Allocations: 97336) -Completed 200 OK in 57ms (Views: 56.6ms | Allocations: 97640) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:33:11 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1232.1ms | Allocations: 1535322) -Completed 200 OK in 1236ms (Views: 1233.6ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:33:12 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:33:12 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 16:33:13 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:33:13 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 58.8ms | Allocations: 97333) -Completed 200 OK in 60ms (Views: 59.2ms | Allocations: 97632) -Started POST "/http" for 127.0.0.1 at 2021-01-20 16:33:14 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:33:14 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 57.0ms | Allocations: 97328) -Completed 200 OK in 58ms (Views: 57.3ms | Allocations: 97625) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:33:14 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:33:15 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 57.5ms | Allocations: 97327) -Completed 200 OK in 58ms (Views: 57.9ms | Allocations: 97624) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:33:15 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:33:15 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 96.7ms | Allocations: 97334) -Completed 200 OK in 98ms (Views: 97.0ms | Allocations: 97631) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:33:16 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:33:16 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 55.5ms | Allocations: 97341) -Completed 200 OK in 56ms (Views: 55.8ms | Allocations: 97645) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:36:10 -0500 +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 17:57:59 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"1"} Rendering inline template - Rendered inline template (Duration: 1203.5ms | Allocations: 1535322) -Completed 200 OK in 1207ms (Views: 1205.2ms | Allocations: 1536765) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:36:11 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:36:11 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 16:36:12 -0500 + Rendered inline template (Duration: 602.4ms | Allocations: 1050339) +Completed 200 OK in 606ms (Views: 603.7ms | Allocations: 1051705) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 17:58:00 -0500 +Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 17:58:00 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 17:58:00 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 2ms (Views: 2.0ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:36:12 -0500 +Completed 200 OK in 1ms (Views: 1.3ms | Allocations: 494) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 17:58:01 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"2"} Rendering inline template - Rendered inline template (Duration: 55.1ms | Allocations: 97334) -Completed 200 OK in 56ms (Views: 55.4ms | Allocations: 97634) -Started POST "/http" for 127.0.0.1 at 2021-01-20 16:36:13 -0500 + Rendered inline template (Duration: 21.9ms | Allocations: 36452) +Completed 200 OK in 23ms (Views: 22.2ms | Allocations: 36716) +Started POST "/http" for 127.0.0.1 at 2021-01-20 17:58:01 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:36:13 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 17:58:01 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"3"} Rendering inline template - Rendered inline template (Duration: 59.9ms | Allocations: 97328) -Completed 200 OK in 61ms (Views: 60.2ms | Allocations: 97625) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:36:13 -0500 + Rendered inline template (Duration: 70.3ms | Allocations: 36446) +Completed 200 OK in 72ms (Views: 71.9ms | Allocations: 36708) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 17:58:02 -0500 Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:36:14 -0500 +Completed 200 OK in 2ms (Views: 1.6ms | Allocations: 143) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 17:58:02 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"4"} Rendering inline template - Rendered inline template (Duration: 82.4ms | Allocations: 97331) -Completed 200 OK in 83ms (Views: 82.7ms | Allocations: 97628) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:36:14 -0500 + Rendered inline template (Duration: 22.5ms | Allocations: 36482) +Completed 200 OK in 23ms (Views: 22.8ms | Allocations: 36745) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 17:58:02 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:36:14 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 17:58:02 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"5"} Rendering inline template - Rendered inline template (Duration: 56.2ms | Allocations: 97332) -Completed 200 OK in 57ms (Views: 56.5ms | Allocations: 97629) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:36:15 -0500 + Rendered inline template (Duration: 22.5ms | Allocations: 36445) +Completed 200 OK in 23ms (Views: 22.8ms | Allocations: 36707) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 17:58:03 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:36:15 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 127) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 17:58:03 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"6"} Rendering inline template - Rendered inline template (Duration: 58.8ms | Allocations: 97336) -Completed 200 OK in 60ms (Views: 59.1ms | Allocations: 97640) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:37:30 -0500 + Rendered inline template (Duration: 20.8ms | Allocations: 36454) +Completed 200 OK in 21ms (Views: 21.1ms | Allocations: 36723) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 17:58:37 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"1"} Rendering inline template - Rendered inline template (Duration: 1144.7ms | Allocations: 1535322) -Completed 200 OK in 1149ms (Views: 1146.5ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:37:31 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:37:31 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 16:37:32 -0500 + Rendered inline template (Duration: 606.0ms | Allocations: 1050340) +Completed 200 OK in 610ms (Views: 607.7ms | Allocations: 1051706) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 17:58:38 -0500 +Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 17:58:38 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 17:58:38 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 4ms (Views: 3.9ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:37:32 -0500 +Completed 200 OK in 2ms (Views: 1.8ms | Allocations: 494) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 17:58:39 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"2"} Rendering inline template - Rendered inline template (Duration: 71.5ms | Allocations: 97334) -Completed 200 OK in 72ms (Views: 71.8ms | Allocations: 97632) -Started POST "/http" for 127.0.0.1 at 2021-01-20 16:37:33 -0500 + Rendered inline template (Duration: 51.4ms | Allocations: 36451) +Completed 200 OK in 52ms (Views: 51.7ms | Allocations: 36714) +Started POST "/http" for 127.0.0.1 at 2021-01-20 17:58:39 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:37:33 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 17:58:40 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"3"} Rendering inline template - Rendered inline template (Duration: 57.3ms | Allocations: 97332) -Completed 200 OK in 58ms (Views: 57.6ms | Allocations: 97629) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:37:34 -0500 + Rendered inline template (Duration: 23.3ms | Allocations: 36451) +Completed 200 OK in 24ms (Views: 23.6ms | Allocations: 36713) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 17:58:40 -0500 Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:37:34 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 143) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 17:58:40 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"4"} Rendering inline template - Rendered inline template (Duration: 56.6ms | Allocations: 97327) -Completed 200 OK in 58ms (Views: 56.9ms | Allocations: 97624) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:37:34 -0500 + Rendered inline template (Duration: 72.5ms | Allocations: 36445) +Completed 200 OK in 74ms (Views: 72.7ms | Allocations: 36707) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 17:58:41 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:37:34 -0500 +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 139) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 17:58:41 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"5"} Rendering inline template - Rendered inline template (Duration: 59.6ms | Allocations: 97332) -Completed 200 OK in 60ms (Views: 59.9ms | Allocations: 97629) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:37:35 -0500 + Rendered inline template (Duration: 62.6ms | Allocations: 36451) +Completed 200 OK in 64ms (Views: 63.2ms | Allocations: 36713) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 17:58:41 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:37:35 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 128) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 17:58:41 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"6"} Rendering inline template - Rendered inline template (Duration: 55.6ms | Allocations: 97336) -Completed 200 OK in 56ms (Views: 55.9ms | Allocations: 97640) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:40:14 -0500 + Rendered inline template (Duration: 21.6ms | Allocations: 36459) +Completed 200 OK in 22ms (Views: 21.9ms | Allocations: 36728) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 17:59:28 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"1"} Rendering inline template - Rendered inline template (Duration: 1380.3ms | Allocations: 1535322) -Completed 200 OK in 1384ms (Views: 1382.1ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:40:15 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:40:15 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 16:40:16 -0500 + Rendered inline template (Duration: 654.1ms | Allocations: 1025792) +Completed 200 OK in 661ms (Views: 657.7ms | Allocations: 1027158) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 17:59:29 -0500 +Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 17:59:29 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 17:59:29 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:40:16 -0500 +Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 494) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 17:59:30 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"2"} Rendering inline template - Rendered inline template (Duration: 58.2ms | Allocations: 97333) -Completed 200 OK in 59ms (Views: 58.4ms | Allocations: 97631) -Started POST "/http" for 127.0.0.1 at 2021-01-20 16:40:17 -0500 + Rendered inline template (Duration: 21.4ms | Allocations: 36484) +Completed 200 OK in 22ms (Views: 21.7ms | Allocations: 36747) +Started POST "/http" for 127.0.0.1 at 2021-01-20 17:59:30 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:40:17 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 17:59:30 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"3"} Rendering inline template - Rendered inline template (Duration: 59.0ms | Allocations: 97328) -Completed 200 OK in 60ms (Views: 59.3ms | Allocations: 97625) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:40:17 -0500 + Rendered inline template (Duration: 58.2ms | Allocations: 36446) +Completed 200 OK in 59ms (Views: 58.5ms | Allocations: 36708) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 17:59:31 -0500 Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:40:18 -0500 +Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 143) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 17:59:31 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"4"} Rendering inline template - Rendered inline template (Duration: 57.8ms | Allocations: 97327) -Completed 200 OK in 59ms (Views: 58.1ms | Allocations: 97624) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:40:18 -0500 + Rendered inline template (Duration: 50.5ms | Allocations: 36449) +Completed 200 OK in 53ms (Views: 50.9ms | Allocations: 36711) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 17:59:31 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:40:18 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 17:59:32 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"5"} Rendering inline template - Rendered inline template (Duration: 99.1ms | Allocations: 97333) -Completed 200 OK in 100ms (Views: 99.4ms | Allocations: 97630) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:40:19 -0500 + Rendered inline template (Duration: 22.1ms | Allocations: 36450) +Completed 200 OK in 23ms (Views: 22.4ms | Allocations: 36712) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 17:59:32 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:40:19 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 127) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 17:59:32 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"6"} Rendering inline template - Rendered inline template (Duration: 53.5ms | Allocations: 97341) -Completed 200 OK in 54ms (Views: 53.8ms | Allocations: 97645) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:45:04 -0500 + Rendered inline template (Duration: 21.4ms | Allocations: 36454) +Completed 200 OK in 22ms (Views: 21.7ms | Allocations: 36723) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 18:00:05 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"1"} Rendering inline template - Rendered inline template (Duration: 1264.8ms | Allocations: 1535322) -Completed 200 OK in 1269ms (Views: 1266.8ms | Allocations: 1536765) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:45:05 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:45:05 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 16:45:06 -0500 + Rendered inline template (Duration: 645.2ms | Allocations: 1025792) +Completed 200 OK in 651ms (Views: 648.1ms | Allocations: 1027158) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 18:00:06 -0500 +Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 18:00:06 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 18:00:06 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:45:06 -0500 +Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 494) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 18:00:07 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"2"} Rendering inline template - Rendered inline template (Duration: 59.6ms | Allocations: 97333) -Completed 200 OK in 60ms (Views: 59.9ms | Allocations: 97631) -Started POST "/http" for 127.0.0.1 at 2021-01-20 16:45:07 -0500 + Rendered inline template (Duration: 21.8ms | Allocations: 36484) +Completed 200 OK in 22ms (Views: 22.1ms | Allocations: 36747) +Started POST "/http" for 127.0.0.1 at 2021-01-20 18:00:07 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:45:07 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 18:00:07 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"3"} Rendering inline template - Rendered inline template (Duration: 58.5ms | Allocations: 97328) -Completed 200 OK in 59ms (Views: 58.8ms | Allocations: 97625) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:45:08 -0500 + Rendered inline template (Duration: 21.0ms | Allocations: 36446) +Completed 200 OK in 22ms (Views: 21.2ms | Allocations: 36708) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 18:00:08 -0500 Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:45:08 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 143) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 18:00:08 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"4"} Rendering inline template - Rendered inline template (Duration: 63.9ms | Allocations: 97327) -Completed 200 OK in 65ms (Views: 64.2ms | Allocations: 97624) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:45:08 -0500 + Rendered inline template (Duration: 22.3ms | Allocations: 36445) +Completed 200 OK in 23ms (Views: 22.6ms | Allocations: 36707) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 18:00:08 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:45:09 -0500 +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 139) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 18:00:09 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"5"} Rendering inline template - Rendered inline template (Duration: 99.5ms | Allocations: 97333) -Completed 200 OK in 100ms (Views: 99.7ms | Allocations: 97630) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:45:09 -0500 + Rendered inline template (Duration: 22.5ms | Allocations: 36445) +Completed 200 OK in 23ms (Views: 22.8ms | Allocations: 36707) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 18:00:09 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:45:09 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 127) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 18:00:09 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"6"} Rendering inline template - Rendered inline template (Duration: 53.8ms | Allocations: 97341) -Completed 200 OK in 55ms (Views: 54.1ms | Allocations: 97645) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:47:45 -0500 + Rendered inline template (Duration: 22.6ms | Allocations: 36454) +Completed 200 OK in 23ms (Views: 22.9ms | Allocations: 36723) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 18:00:50 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"1"} Rendering inline template - Rendered inline template (Duration: 1282.4ms | Allocations: 1535322) -Completed 200 OK in 1286ms (Views: 1284.1ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:47:47 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:47:47 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 16:47:47 -0500 + Rendered inline template (Duration: 515.6ms | Allocations: 1025791) +Completed 200 OK in 519ms (Views: 517.0ms | Allocations: 1027157) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 18:00:50 -0500 +Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 18:00:50 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 18:00:51 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 4ms (Views: 3.6ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:47:48 -0500 +Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 494) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 18:00:51 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"2"} Rendering inline template - Rendered inline template (Duration: 61.4ms | Allocations: 97333) -Completed 200 OK in 62ms (Views: 61.7ms | Allocations: 97631) -Started POST "/http" for 127.0.0.1 at 2021-01-20 16:47:48 -0500 + Rendered inline template (Duration: 58.2ms | Allocations: 36452) +Completed 200 OK in 59ms (Views: 58.4ms | Allocations: 36715) +Started POST "/http" for 127.0.0.1 at 2021-01-20 18:00:52 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:47:49 -0500 +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 139) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 18:00:52 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"3"} Rendering inline template - Rendered inline template (Duration: 56.8ms | Allocations: 97328) -Completed 200 OK in 58ms (Views: 57.1ms | Allocations: 97625) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:47:49 -0500 + Rendered inline template (Duration: 52.4ms | Allocations: 36446) +Completed 200 OK in 53ms (Views: 52.7ms | Allocations: 36708) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 18:00:52 -0500 Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:47:49 -0500 +Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 143) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 18:00:53 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"4"} Rendering inline template - Rendered inline template (Duration: 60.9ms | Allocations: 97327) -Completed 200 OK in 62ms (Views: 61.2ms | Allocations: 97624) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:47:50 -0500 + Rendered inline template (Duration: 37.4ms | Allocations: 36448) +Completed 200 OK in 38ms (Views: 37.7ms | Allocations: 36710) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 18:00:53 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:47:50 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 18:00:53 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"5"} Rendering inline template - Rendered inline template (Duration: 95.5ms | Allocations: 97334) -Completed 200 OK in 96ms (Views: 95.8ms | Allocations: 97631) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:47:50 -0500 + Rendered inline template (Duration: 21.2ms | Allocations: 36449) +Completed 200 OK in 22ms (Views: 21.5ms | Allocations: 36711) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 18:00:53 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:47:51 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 127) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 18:00:54 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"6"} Rendering inline template - Rendered inline template (Duration: 54.1ms | Allocations: 97340) -Completed 200 OK in 55ms (Views: 54.4ms | Allocations: 97644) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:48:47 -0500 + Rendered inline template (Duration: 25.5ms | Allocations: 36454) +Completed 200 OK in 26ms (Views: 25.8ms | Allocations: 36723) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 18:05:38 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"1"} Rendering inline template - Rendered inline template (Duration: 1226.2ms | Allocations: 1535322) -Completed 200 OK in 1229ms (Views: 1227.6ms | Allocations: 1536765) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:48:49 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:48:49 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 16:48:49 -0500 + Rendered inline template (Duration: 610.2ms | Allocations: 1025792) +Completed 200 OK in 616ms (Views: 613.4ms | Allocations: 1027158) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 18:05:38 -0500 +Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 18:05:38 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 18:05:39 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:48:50 -0500 +Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 494) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 18:05:39 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"2"} Rendering inline template - Rendered inline template (Duration: 55.0ms | Allocations: 97333) -Completed 200 OK in 56ms (Views: 55.3ms | Allocations: 97631) -Started POST "/http" for 127.0.0.1 at 2021-01-20 16:48:50 -0500 + Rendered inline template (Duration: 21.8ms | Allocations: 36485) +Completed 200 OK in 23ms (Views: 22.1ms | Allocations: 36749) +Started POST "/http" for 127.0.0.1 at 2021-01-20 18:05:39 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:48:50 -0500 +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 140) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 18:05:40 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"3"} Rendering inline template - Rendered inline template (Duration: 56.4ms | Allocations: 97328) -Completed 200 OK in 57ms (Views: 56.7ms | Allocations: 97625) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:48:51 -0500 + Rendered inline template (Duration: 21.0ms | Allocations: 36446) +Completed 200 OK in 22ms (Views: 21.3ms | Allocations: 36708) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 18:05:40 -0500 Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:48:51 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 143) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 18:05:40 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"4"} Rendering inline template - Rendered inline template (Duration: 58.4ms | Allocations: 97327) -Completed 200 OK in 59ms (Views: 58.7ms | Allocations: 97624) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:48:52 -0500 + Rendered inline template (Duration: 22.0ms | Allocations: 36445) +Completed 200 OK in 23ms (Views: 22.3ms | Allocations: 36707) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 18:05:41 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:48:52 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 139) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 18:05:41 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"5"} Rendering inline template - Rendered inline template (Duration: 99.3ms | Allocations: 97333) -Completed 200 OK in 100ms (Views: 99.6ms | Allocations: 97630) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:48:52 -0500 + Rendered inline template (Duration: 21.5ms | Allocations: 36445) +Completed 200 OK in 22ms (Views: 21.8ms | Allocations: 36707) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 18:05:41 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:48:53 -0500 +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 127) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 18:05:41 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"6"} Rendering inline template - Rendered inline template (Duration: 55.8ms | Allocations: 97341) -Completed 200 OK in 57ms (Views: 56.1ms | Allocations: 97645) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:55:15 -0500 + Rendered inline template (Duration: 45.7ms | Allocations: 36462) +Completed 200 OK in 46ms (Views: 46.0ms | Allocations: 36731) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 18:21:56 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"1"} Rendering inline template - Rendered inline template (Duration: 1119.5ms | Allocations: 1535323) -Completed 200 OK in 1123ms (Views: 1121.0ms | Allocations: 1536766) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:55:16 -0500 -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:55:16 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 16:55:17 -0500 + Rendered inline template (Duration: 664.2ms | Allocations: 1025793) +Completed 200 OK in 683ms (Views: 679.2ms | Allocations: 1027159) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 18:21:57 -0500 +Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 18:21:57 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 18:21:57 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:55:17 -0500 +Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 494) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 18:21:58 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"2"} Rendering inline template - Rendered inline template (Duration: 57.6ms | Allocations: 97333) -Completed 200 OK in 58ms (Views: 57.8ms | Allocations: 97631) -Started POST "/http" for 127.0.0.1 at 2021-01-20 16:55:17 -0500 + Rendered inline template (Duration: 41.0ms | Allocations: 36484) +Completed 200 OK in 42ms (Views: 41.3ms | Allocations: 36749) +Started POST "/http" for 127.0.0.1 at 2021-01-20 18:21:58 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:55:18 -0500 +Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 140) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 18:21:58 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"3"} Rendering inline template - Rendered inline template (Duration: 95.4ms | Allocations: 97330) -Completed 200 OK in 97ms (Views: 95.9ms | Allocations: 97627) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:55:18 -0500 + Rendered inline template (Duration: 64.4ms | Allocations: 36446) +Completed 200 OK in 65ms (Views: 64.6ms | Allocations: 36708) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 18:21:59 -0500 Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:55:18 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 143) +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 18:21:59 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"4"} Rendering inline template - Rendered inline template (Duration: 54.5ms | Allocations: 97332) -Completed 200 OK in 55ms (Views: 54.9ms | Allocations: 97629) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:55:19 -0500 + Rendered inline template (Duration: 34.8ms | Allocations: 36448) +Completed 200 OK in 36ms (Views: 35.1ms | Allocations: 36710) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 18:21:59 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:55:19 -0500 +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 140) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 18:22:00 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"5"} Rendering inline template - Rendered inline template (Duration: 55.7ms | Allocations: 97327) -Completed 200 OK in 57ms (Views: 56.0ms | Allocations: 97624) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:55:19 -0500 + Rendered inline template (Duration: 22.8ms | Allocations: 36449) +Completed 200 OK in 23ms (Views: 23.1ms | Allocations: 36711) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 18:22:00 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:55:20 -0500 +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 127) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 18:22:00 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"6"} Rendering inline template - Rendered inline template (Duration: 55.7ms | Allocations: 97336) -Completed 200 OK in 57ms (Views: 56.0ms | Allocations: 97640) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 16:56:06 -0500 + Rendered inline template (Duration: 20.3ms | Allocations: 36454) +Completed 200 OK in 21ms (Views: 20.6ms | Allocations: 36723) +Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 18:25:28 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"1"} Rendering inline template - Rendered inline template (Duration: 1029.9ms | Allocations: 1535321) -Completed 200 OK in 1033ms (Views: 1031.2ms | Allocations: 1536764) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 16:56:07 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 16:56:07 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 16:56:08 -0500 + Rendered inline template (Duration: 698.1ms | Allocations: 1025792) +Completed 200 OK in 716ms (Views: 699.4ms | Allocations: 1027158) +Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 18:25:29 -0500 +Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 18:25:29 -0500 +Started GET "/http" for 127.0.0.1 at 2021-01-20 18:25:29 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 16:56:08 -0500 +Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 494) +Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 18:25:29 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"2"} Rendering inline template - Rendered inline template (Duration: 86.8ms | Allocations: 97333) -Completed 200 OK in 88ms (Views: 87.1ms | Allocations: 97631) -Started POST "/http" for 127.0.0.1 at 2021-01-20 16:56:09 -0500 + Rendered inline template (Duration: 22.4ms | Allocations: 36451) +Completed 200 OK in 23ms (Views: 22.7ms | Allocations: 36715) +Started POST "/http" for 127.0.0.1 at 2021-01-20 18:25:30 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 16:56:09 -0500 +Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 139) +Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 18:25:30 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"3"} Rendering inline template - Rendered inline template (Duration: 53.2ms | Allocations: 97333) -Completed 200 OK in 54ms (Views: 53.5ms | Allocations: 97630) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 16:56:10 -0500 + Rendered inline template (Duration: 59.8ms | Allocations: 36448) +Completed 200 OK in 60ms (Views: 60.1ms | Allocations: 36710) +Started POST "/http-file" for 127.0.0.1 at 2021-01-20 18:25:30 -0500 Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 16:56:10 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 104.3ms | Allocations: 97327) -Completed 200 OK in 105ms (Views: 104.6ms | Allocations: 97624) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 16:56:10 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} + Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 16:56:10 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 138.4ms | Allocations: 97331) -Completed 200 OK in 139ms (Views: 138.7ms | Allocations: 97629) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 16:56:11 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 16:56:11 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 55.1ms | Allocations: 97341) -Completed 200 OK in 56ms (Views: 55.3ms | Allocations: 97645) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 17:02:52 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 1188.0ms | Allocations: 1535321) -Completed 200 OK in 1191ms (Views: 1189.4ms | Allocations: 1536764) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 17:02:53 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 17:02:53 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 17:02:54 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 17:02:55 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 56.0ms | Allocations: 97333) -Completed 200 OK in 57ms (Views: 56.3ms | Allocations: 97631) -Started POST "/http" for 127.0.0.1 at 2021-01-20 17:02:55 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 17:02:55 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 61.7ms | Allocations: 97328) -Completed 200 OK in 63ms (Views: 62.0ms | Allocations: 97625) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 17:02:56 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 17:02:56 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 99.2ms | Allocations: 97331) -Completed 200 OK in 100ms (Views: 99.5ms | Allocations: 97628) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 17:02:56 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 17:02:57 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 52.5ms | Allocations: 97333) -Completed 200 OK in 53ms (Views: 52.8ms | Allocations: 97630) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 17:02:57 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 17:02:57 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 57.2ms | Allocations: 97336) -Completed 200 OK in 58ms (Views: 57.5ms | Allocations: 97640) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 17:12:45 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 3231.7ms | Allocations: 1535323) -Completed 200 OK in 3242ms (Views: 3236.3ms | Allocations: 1536766) -Started GET "/assets/application-9732433f70ceb4297c5240b02f066cd2071d41f8a533b130af0f53e6578fac97.js" for 127.0.0.1 at 2021-01-20 17:12:49 -0500 -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 17:12:49 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 17:12:51 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 5ms (Views: 5.1ms | Allocations: 467) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 17:12:52 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 332.4ms | Allocations: 97378) -Completed 200 OK in 335ms (Views: 333.4ms | Allocations: 97678) -Started POST "/http" for 127.0.0.1 at 2021-01-20 17:12:54 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.1ms | Allocations: 1) -Completed 200 OK in 2ms (Views: 1.8ms | Allocations: 144) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 17:12:54 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 607.5ms | Allocations: 97329) -Completed 200 OK in 612ms (Views: 608.8ms | Allocations: 97626) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 17:12:55 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 2ms (Views: 1.2ms | Allocations: 148) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 17:12:56 -0500 +Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 18:25:31 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"4"} Rendering inline template - Rendered inline template (Duration: 683.6ms | Allocations: 97330) -Completed 200 OK in 688ms (Views: 685.0ms | Allocations: 97627) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 17:12:58 -0500 + Rendered inline template (Duration: 21.7ms | Allocations: 36450) +Completed 200 OK in 22ms (Views: 21.9ms | Allocations: 36712) +Started PUT "/http" for 127.0.0.1 at 2021-01-20 18:25:31 -0500 Processing by TestController#post_put as JS Parameters: {"lol"=>"wut"} Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 2ms (Views: 1.0ms | Allocations: 144) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 17:12:58 -0500 +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 139) +Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 18:25:31 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"5"} Rendering inline template - Rendered inline template (Duration: 348.3ms | Allocations: 97333) -Completed 200 OK in 351ms (Views: 349.6ms | Allocations: 97630) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 17:12:59 -0500 + Rendered inline template (Duration: 23.6ms | Allocations: 36445) +Completed 200 OK in 24ms (Views: 23.9ms | Allocations: 36707) +Started DELETE "/http" for 127.0.0.1 at 2021-01-20 18:25:31 -0500 Processing by TestController#get_delete as JS Rendering text template Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 132) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 17:13:00 -0500 +Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 127) +Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 18:25:32 -0500 Processing by HyperSpecTestController#test as HTML Parameters: {"id"=>"6"} Rendering inline template - Rendered inline template (Duration: 399.4ms | Allocations: 97336) -Completed 200 OK in 403ms (Views: 400.7ms | Allocations: 97641) + Rendered inline template (Duration: 22.0ms | Allocations: 36454) +Completed 200 OK in 23ms (Views: 22.3ms | Allocations: 36723) diff --git a/spec/test_app/public/404.html b/spec/test_app/public/404.html deleted file mode 100644 index b612547f..00000000 --- a/spec/test_app/public/404.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - The page you were looking for doesn't exist (404) - - - - - - -
-
-

The page you were looking for doesn't exist.

-

You may have mistyped the address or the page may have moved.

-
-

If you are the application owner check the logs for more information.

-
- - diff --git a/spec/test_app/public/422.html b/spec/test_app/public/422.html deleted file mode 100644 index a21f82b3..00000000 --- a/spec/test_app/public/422.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - The change you wanted was rejected (422) - - - - - - -
-
-

The change you wanted was rejected.

-

Maybe you tried to change something you didn't have access to.

-
-

If you are the application owner check the logs for more information.

-
- - diff --git a/spec/test_app/public/500.html b/spec/test_app/public/500.html deleted file mode 100644 index 061abc58..00000000 --- a/spec/test_app/public/500.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - We're sorry, but something went wrong (500) - - - - - - -
-
-

We're sorry, but something went wrong.

-
-

If you are the application owner check the logs for more information.

-
- - diff --git a/spec/test_app/public/favicon.ico b/spec/test_app/public/favicon.ico deleted file mode 100644 index e69de29b..00000000 diff --git a/spec/test_app/spec/assets/javascripts/factorial.rb b/spec/test_app/spec/assets/javascripts/factorial.rb deleted file mode 100644 index ea09551f..00000000 --- a/spec/test_app/spec/assets/javascripts/factorial.rb +++ /dev/null @@ -1,4 +0,0 @@ -require 'application' -def factorial(n) - n==1 ? 1 : n * factorial(n-1) -end diff --git a/spec/test_app/spec/assets/stylesheets/test.css b/spec/test_app/spec/assets/stylesheets/test.css deleted file mode 100644 index 9957c3a8..00000000 --- a/spec/test_app/spec/assets/stylesheets/test.css +++ /dev/null @@ -1,4 +0,0 @@ -.application-style { - border-style:solid; - } - From 2ffb1b2011fac823adeb3289ab5815ad39902dd0 Mon Sep 17 00:00:00 2001 From: catmando Date: Wed, 20 Jan 2021 18:52:10 -0500 Subject: [PATCH 5/9] gitignore updated to remove log files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 8c43b95e..4819e796 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ vendor copycat doc spec/test_app/tmp/ +spec/test_app/log/ From cd3b68a9dde3855f11121c3125719324dcba0e97 Mon Sep 17 00:00:00 2001 From: catmando Date: Wed, 20 Jan 2021 18:52:56 -0500 Subject: [PATCH 6/9] log files removed from repo --- spec/test_app/log/test.log | 528 ------------------------------------- 1 file changed, 528 deletions(-) delete mode 100644 spec/test_app/log/test.log diff --git a/spec/test_app/log/test.log b/spec/test_app/log/test.log deleted file mode 100644 index 7d26a212..00000000 --- a/spec/test_app/log/test.log +++ /dev/null @@ -1,528 +0,0 @@ -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 17:57:59 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 602.4ms | Allocations: 1050339) -Completed 200 OK in 606ms (Views: 603.7ms | Allocations: 1051705) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 17:58:00 -0500 -Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 17:58:00 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 17:58:00 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 1.3ms | Allocations: 494) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 17:58:01 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 21.9ms | Allocations: 36452) -Completed 200 OK in 23ms (Views: 22.2ms | Allocations: 36716) -Started POST "/http" for 127.0.0.1 at 2021-01-20 17:58:01 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 17:58:01 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 70.3ms | Allocations: 36446) -Completed 200 OK in 72ms (Views: 71.9ms | Allocations: 36708) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 17:58:02 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 2ms (Views: 1.6ms | Allocations: 143) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 17:58:02 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 22.5ms | Allocations: 36482) -Completed 200 OK in 23ms (Views: 22.8ms | Allocations: 36745) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 17:58:02 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 17:58:02 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 22.5ms | Allocations: 36445) -Completed 200 OK in 23ms (Views: 22.8ms | Allocations: 36707) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 17:58:03 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 127) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 17:58:03 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 20.8ms | Allocations: 36454) -Completed 200 OK in 21ms (Views: 21.1ms | Allocations: 36723) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 17:58:37 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 606.0ms | Allocations: 1050340) -Completed 200 OK in 610ms (Views: 607.7ms | Allocations: 1051706) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 17:58:38 -0500 -Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 17:58:38 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 17:58:38 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 2ms (Views: 1.8ms | Allocations: 494) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 17:58:39 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 51.4ms | Allocations: 36451) -Completed 200 OK in 52ms (Views: 51.7ms | Allocations: 36714) -Started POST "/http" for 127.0.0.1 at 2021-01-20 17:58:39 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 17:58:40 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 23.3ms | Allocations: 36451) -Completed 200 OK in 24ms (Views: 23.6ms | Allocations: 36713) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 17:58:40 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 143) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 17:58:40 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 72.5ms | Allocations: 36445) -Completed 200 OK in 74ms (Views: 72.7ms | Allocations: 36707) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 17:58:41 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 139) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 17:58:41 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 62.6ms | Allocations: 36451) -Completed 200 OK in 64ms (Views: 63.2ms | Allocations: 36713) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 17:58:41 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 128) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 17:58:41 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 21.6ms | Allocations: 36459) -Completed 200 OK in 22ms (Views: 21.9ms | Allocations: 36728) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 17:59:28 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 654.1ms | Allocations: 1025792) -Completed 200 OK in 661ms (Views: 657.7ms | Allocations: 1027158) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 17:59:29 -0500 -Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 17:59:29 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 17:59:29 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 494) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 17:59:30 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 21.4ms | Allocations: 36484) -Completed 200 OK in 22ms (Views: 21.7ms | Allocations: 36747) -Started POST "/http" for 127.0.0.1 at 2021-01-20 17:59:30 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 17:59:30 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 58.2ms | Allocations: 36446) -Completed 200 OK in 59ms (Views: 58.5ms | Allocations: 36708) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 17:59:31 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 143) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 17:59:31 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 50.5ms | Allocations: 36449) -Completed 200 OK in 53ms (Views: 50.9ms | Allocations: 36711) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 17:59:31 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 17:59:32 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 22.1ms | Allocations: 36450) -Completed 200 OK in 23ms (Views: 22.4ms | Allocations: 36712) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 17:59:32 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 127) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 17:59:32 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 21.4ms | Allocations: 36454) -Completed 200 OK in 22ms (Views: 21.7ms | Allocations: 36723) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 18:00:05 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 645.2ms | Allocations: 1025792) -Completed 200 OK in 651ms (Views: 648.1ms | Allocations: 1027158) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 18:00:06 -0500 -Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 18:00:06 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 18:00:06 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 494) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 18:00:07 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 21.8ms | Allocations: 36484) -Completed 200 OK in 22ms (Views: 22.1ms | Allocations: 36747) -Started POST "/http" for 127.0.0.1 at 2021-01-20 18:00:07 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 18:00:07 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 21.0ms | Allocations: 36446) -Completed 200 OK in 22ms (Views: 21.2ms | Allocations: 36708) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 18:00:08 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 143) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 18:00:08 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 22.3ms | Allocations: 36445) -Completed 200 OK in 23ms (Views: 22.6ms | Allocations: 36707) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 18:00:08 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 139) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 18:00:09 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 22.5ms | Allocations: 36445) -Completed 200 OK in 23ms (Views: 22.8ms | Allocations: 36707) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 18:00:09 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 127) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 18:00:09 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 22.6ms | Allocations: 36454) -Completed 200 OK in 23ms (Views: 22.9ms | Allocations: 36723) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 18:00:50 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 515.6ms | Allocations: 1025791) -Completed 200 OK in 519ms (Views: 517.0ms | Allocations: 1027157) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 18:00:50 -0500 -Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 18:00:50 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 18:00:51 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 494) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 18:00:51 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 58.2ms | Allocations: 36452) -Completed 200 OK in 59ms (Views: 58.4ms | Allocations: 36715) -Started POST "/http" for 127.0.0.1 at 2021-01-20 18:00:52 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 139) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 18:00:52 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 52.4ms | Allocations: 36446) -Completed 200 OK in 53ms (Views: 52.7ms | Allocations: 36708) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 18:00:52 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 143) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 18:00:53 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 37.4ms | Allocations: 36448) -Completed 200 OK in 38ms (Views: 37.7ms | Allocations: 36710) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 18:00:53 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 140) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 18:00:53 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 21.2ms | Allocations: 36449) -Completed 200 OK in 22ms (Views: 21.5ms | Allocations: 36711) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 18:00:53 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 127) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 18:00:54 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 25.5ms | Allocations: 36454) -Completed 200 OK in 26ms (Views: 25.8ms | Allocations: 36723) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 18:05:38 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 610.2ms | Allocations: 1025792) -Completed 200 OK in 616ms (Views: 613.4ms | Allocations: 1027158) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 18:05:38 -0500 -Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 18:05:38 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 18:05:39 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 494) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 18:05:39 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 21.8ms | Allocations: 36485) -Completed 200 OK in 23ms (Views: 22.1ms | Allocations: 36749) -Started POST "/http" for 127.0.0.1 at 2021-01-20 18:05:39 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 140) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 18:05:40 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 21.0ms | Allocations: 36446) -Completed 200 OK in 22ms (Views: 21.3ms | Allocations: 36708) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 18:05:40 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 143) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 18:05:40 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 22.0ms | Allocations: 36445) -Completed 200 OK in 23ms (Views: 22.3ms | Allocations: 36707) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 18:05:41 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 139) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 18:05:41 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 21.5ms | Allocations: 36445) -Completed 200 OK in 22ms (Views: 21.8ms | Allocations: 36707) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 18:05:41 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 127) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 18:05:41 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 45.7ms | Allocations: 36462) -Completed 200 OK in 46ms (Views: 46.0ms | Allocations: 36731) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 18:21:56 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 664.2ms | Allocations: 1025793) -Completed 200 OK in 683ms (Views: 679.2ms | Allocations: 1027159) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 18:21:57 -0500 -Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 18:21:57 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 18:21:57 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 1.1ms | Allocations: 494) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 18:21:58 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 41.0ms | Allocations: 36484) -Completed 200 OK in 42ms (Views: 41.3ms | Allocations: 36749) -Started POST "/http" for 127.0.0.1 at 2021-01-20 18:21:58 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 140) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 18:21:58 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 64.4ms | Allocations: 36446) -Completed 200 OK in 65ms (Views: 64.6ms | Allocations: 36708) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 18:21:59 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 143) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 18:21:59 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 34.8ms | Allocations: 36448) -Completed 200 OK in 36ms (Views: 35.1ms | Allocations: 36710) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 18:21:59 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 140) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 18:22:00 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 22.8ms | Allocations: 36449) -Completed 200 OK in 23ms (Views: 23.1ms | Allocations: 36711) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 18:22:00 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 127) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 18:22:00 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 20.3ms | Allocations: 36454) -Completed 200 OK in 21ms (Views: 20.6ms | Allocations: 36723) -Started GET "/hyper_spec_test/1" for 127.0.0.1 at 2021-01-20 18:25:28 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"1"} - Rendering inline template - Rendered inline template (Duration: 698.1ms | Allocations: 1025792) -Completed 200 OK in 716ms (Views: 699.4ms | Allocations: 1027158) -Started GET "/assets/application-e3aeec5fd5935b99828fb8f43ec8a1afd3aad7f84cc15ac5eafc65b5ad8ef866.css" for 127.0.0.1 at 2021-01-20 18:25:29 -0500 -Started GET "/assets/application-08cd281995e812762d5192022c0fe3fc544aae04d0f42fc2a5726244f18adb27.js" for 127.0.0.1 at 2021-01-20 18:25:29 -0500 -Started GET "/http" for 127.0.0.1 at 2021-01-20 18:25:29 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 494) -Started GET "/hyper_spec_test/2" for 127.0.0.1 at 2021-01-20 18:25:29 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"2"} - Rendering inline template - Rendered inline template (Duration: 22.4ms | Allocations: 36451) -Completed 200 OK in 23ms (Views: 22.7ms | Allocations: 36715) -Started POST "/http" for 127.0.0.1 at 2021-01-20 18:25:30 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 139) -Started GET "/hyper_spec_test/3" for 127.0.0.1 at 2021-01-20 18:25:30 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"3"} - Rendering inline template - Rendered inline template (Duration: 59.8ms | Allocations: 36448) -Completed 200 OK in 60ms (Views: 60.1ms | Allocations: 36710) -Started POST "/http-file" for 127.0.0.1 at 2021-01-20 18:25:30 -0500 -Processing by TestController#post_file as JS - Parameters: {"lol"=>"wut", "file"=>#, @original_filename="yay.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"file\"; filename=\"yay.txt\"\r\nContent-Type: text/plain\r\n">} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 144) -Started GET "/hyper_spec_test/4" for 127.0.0.1 at 2021-01-20 18:25:31 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"4"} - Rendering inline template - Rendered inline template (Duration: 21.7ms | Allocations: 36450) -Completed 200 OK in 22ms (Views: 21.9ms | Allocations: 36712) -Started PUT "/http" for 127.0.0.1 at 2021-01-20 18:25:31 -0500 -Processing by TestController#post_put as JS - Parameters: {"lol"=>"wut"} - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 139) -Started GET "/hyper_spec_test/5" for 127.0.0.1 at 2021-01-20 18:25:31 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"5"} - Rendering inline template - Rendered inline template (Duration: 23.6ms | Allocations: 36445) -Completed 200 OK in 24ms (Views: 23.9ms | Allocations: 36707) -Started DELETE "/http" for 127.0.0.1 at 2021-01-20 18:25:31 -0500 -Processing by TestController#get_delete as JS - Rendering text template - Rendered text template (Duration: 0.0ms | Allocations: 1) -Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 127) -Started GET "/hyper_spec_test/6" for 127.0.0.1 at 2021-01-20 18:25:32 -0500 -Processing by HyperSpecTestController#test as HTML - Parameters: {"id"=>"6"} - Rendering inline template - Rendered inline template (Duration: 22.0ms | Allocations: 36454) -Completed 200 OK in 23ms (Views: 22.3ms | Allocations: 36723) From ec71c35b512707e3c5f7921290d1dd9f1d77f6c5 Mon Sep 17 00:00:00 2001 From: catmando Date: Wed, 20 Jan 2021 18:59:18 -0500 Subject: [PATCH 7/9] updated readme --- README.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/README.md b/README.md index 77336c86..abdc29eb 100644 --- a/README.md +++ b/README.md @@ -209,6 +209,47 @@ The suggested polyfill is [wgxpath](https://code.google.com/p/wicked-good-xpath/), require it **before** opal-browser. +Contributing +------------ +git clone, then install the required gems: +``` +$ bundle install +``` +run the specs: +``` +$ bundle exec rake +``` + +Most of the specs are run using opal-rspec. The specs that test http +functions or need a full browser environment use the hyper-spec gem to +test communication between a test rails server and the client. These specs +are marked with the `:js` tag. + +You can also run all the tests in a browser by running: +``` +$ bundle exec rackup +``` +and then visiting `localhost:9292` + +#### Debugging tips: + +For the non-js specs (those that run strictly in the client) you can insert +a `debugger` breakpoint in the code. Run the browser server (`rackup`) but +before you load the page, bring up the browser debugger window. + +The specs will stop when they hit your debugging breakpoint and you can poke +around. + +For the js specs add the pry gem to the Gemfile, and then set a `binding.pry` +breakpoint in the problem spec. You can run the specific spec in the usual way +(i.e. `bundle exec spec/some_spec:227`) and you will hit the pry breakpoint. + +Now you can check the state of the client code and do some experiments with +the `c?` method (evaluate on client) +```ruby +$ c? { HTTP.get('/http') } # code in the block is run on the client +``` + License ======= From cdc2235268245cc495109a4f7020e3fea2156706 Mon Sep 17 00:00:00 2001 From: catmando Date: Thu, 21 Jan 2021 10:55:33 -0500 Subject: [PATCH 8/9] more cleanup --- .gitignore | 1 + Rakefile | 2 ++ spec/browser/native_cached_wrapper.rb | 1 - spec/http_spec.rb | 8 ++--- spec/native_cached_wrapper_spec.rb | 2 +- spec/spec_helper.rb | 51 ++++++++++++++++++++++----- 6 files changed, 50 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index 4819e796..675730af 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ copycat doc spec/test_app/tmp/ spec/test_app/log/ +BrowserStackLocal* diff --git a/Rakefile b/Rakefile index 8f02f992..6626ef91 100644 --- a/Rakefile +++ b/Rakefile @@ -15,6 +15,8 @@ require 'rspec/core/rake_task' # All the specs will run in the browser using opal-rspec: # just run bundle exec rackup, and browse localhost:9292 +# See spec/spec_helper and config.ru for more details + RSpec::Core::RakeTask.new(:server_and_client_specs) do |t| t.rspec_opts = '--tag js' t.pattern = 'spec/http_spec.rb,spec/native_cached_wrapper_spec.rb' diff --git a/spec/browser/native_cached_wrapper.rb b/spec/browser/native_cached_wrapper.rb index 1cdb7f29..6fc8157d 100644 --- a/spec/browser/native_cached_wrapper.rb +++ b/spec/browser/native_cached_wrapper.rb @@ -1,6 +1,5 @@ # stub the Browser::NativeCachedWrapper class method # for running code server side with hyper-spec -puts 'requring the fake!!!! cached wrapper' module Browser module NativeCachedWrapper end diff --git a/spec/http_spec.rb b/spec/http_spec.rb index 0ebe7f67..b110a574 100644 --- a/spec/http_spec.rb +++ b/spec/http_spec.rb @@ -18,7 +18,7 @@ end describe '.get!' do - it 'fetches a path', :js do + it 'fetches a path', server_side_test do expect { Browser::HTTP.get!(path).text }.on_client_to eq('lol') end end @@ -33,7 +33,7 @@ end end - describe '.post!', :js do + describe '.post!', server_side_test do it 'sends parameters properly' do expect { Browser::HTTP.post!(path, lol: 'wut').text }.on_client_to eq('ok') end @@ -56,7 +56,7 @@ end end - describe '.put!', :js do + describe '.put!', server_side_test do it 'sends parameters properly' do expect { Browser::HTTP.put!(path, lol: 'wut').text }.on_client_to eq('ok') end @@ -72,7 +72,7 @@ end end - describe '.delete!', :js do + describe '.delete!', server_side_test do it 'fetches a path' do expect { Browser::HTTP.delete!(path).text }.on_client_to eq('lol') end diff --git a/spec/native_cached_wrapper_spec.rb b/spec/native_cached_wrapper_spec.rb index b2590f51..2fb27706 100644 --- a/spec/native_cached_wrapper_spec.rb +++ b/spec/native_cached_wrapper_spec.rb @@ -35,7 +35,7 @@ def self.new(arg1, arg2, arg3) HTML - it 'supports restricted objects', :js do + it 'supports restricted objects', server_side_test do # Window won't be restricted expect { $window.restricted? }.on_client_to eq(false) # Iframe itself won't be restricted diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 2059f693..6cf17390 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,28 +1,51 @@ +# Most specs can run on the client using opal-rspec. +# A few specs need the server-client communication to be tested +# so those run on the server using the hyper-spec rspec +# helpers. + +# You can also run the opal-rspec specs in the browser which +# works fine, since you are in a full browser environment +# talking to a server. However in this case we need to +# add the hyper-spec helpers in as pass throughs so the +# syntax works. + +# See the Rakefile and config.ru for more details. + if RUBY_ENGINE != 'opal' + # setup to run the server side specs require 'hyper-spec' require 'opal-browser' - ENV["RAILS_ENV"] ||= 'test' + ENV['RAILS_ENV'] ||= 'test' require File.expand_path('../test_app/config/environment', __FILE__) require 'rspec/rails' - module HtmlHelper - def html(html_string='') + module Helpers + def html(html_string = '') before do + # we can use the insert_html helper already built into + # hyper-spec insert_html html_string end end + + # to make specs more readable rename :js flag to server_side_test + # on the server, and on the client (see below) just skip the test + def server_side_test + :js # run in capybara js mode + end end RSpec.configure do |config| - config.extend HtmlHelper + config.extend Helpers end + else require 'browser' require 'console' - module HtmlHelper + module Helpers # Add some html code to the body tag ready for testing. This will # be added before each test, then removed after each test. It is # convenient for adding html setup quickly. The code is wrapped @@ -48,11 +71,16 @@ def html(html_string='') after { @_spec_html.remove } end + + # see comments above on the server side helpers + def server_side_test + :js # the js tag will be skipped on the client + end end RSpec.configure do |config| - config.extend HtmlHelper + config.extend Helpers end module RSpec @@ -61,6 +89,10 @@ class ExpectationTarget end module HyperSpecInstanceMethods + # stub the main helpers used by hyper-spec + # not all of these are used currently, but we + # add them all and alias them, so if specs change + # in the future they are available, def to_on_client(matcher, message = nil, &block) evaluate_client('ruby').to(matcher, message, &block) end @@ -93,8 +125,9 @@ def to_then_not(matcher, message = nil, &block) private - def evaluate_client(method) - # stubs the hyper-spec evaluate_client method (basically does nothing, but execute the block) + def evaluate_client(*) + # stubs the hyper-spec evaluate_client method (basically does nothing, + # but execute the block) value = @target.call ExpectationTarget.for(value, nil) end @@ -103,7 +136,7 @@ def evaluate_client(method) class BlockExpectationTarget < ExpectationTarget include HyperSpecInstanceMethods - def with(args) + def with(*) self end end From 4364882d046c8ed75431aa4ab8d63b1551ad0429 Mon Sep 17 00:00:00 2001 From: catmando Date: Tue, 2 Feb 2021 17:13:31 -0500 Subject: [PATCH 9/9] use rack not rails, plus fixes (and specs) for canvas --- Gemfile | 2 +- Rakefile | 6 +- config.ru | 65 +-------------- opal/browser/canvas.rb | 8 +- opal/browser/canvas/data.rb | 4 + opal/browser/canvas/gradient.rb | 28 +++++-- spec/app.rb | 82 +++++++++++++++++++ .../assets/javascripts => app}/application.rb | 1 + spec/canvas/canvas_spec.rb | 56 +++++++++++++ spec/spec_helper.rb | 23 +++++- .../app/assets/stylesheets/application.css | 14 ---- .../app/controllers/application_controller.rb | 13 --- .../app/controllers/test_controller.rb | 19 ----- spec/test_app/config.ru | 4 - spec/test_app/config/application.rb | 51 ------------ spec/test_app/config/boot.rb | 6 -- spec/test_app/config/environment.rb | 5 -- .../config/environments/development.rb | 41 ---------- .../config/environments/production.rb | 79 ------------------ spec/test_app/config/environments/test.rb | 46 ----------- spec/test_app/config/initializers/assets.rb | 12 --- .../initializers/backtrace_silencers.rb | 7 -- .../config/initializers/cookies_serializer.rb | 3 - .../initializers/filter_parameter_logging.rb | 4 - .../config/initializers/inflections.rb | 16 ---- .../config/initializers/mime_types.rb | 4 - .../config/initializers/session_store.rb | 3 - .../config/initializers/synchromesh.rb | 11 --- .../config/initializers/wrap_parameters.rb | 14 ---- spec/test_app/config/locales/en.yml | 23 ------ spec/test_app/config/routes.rb | 7 -- spec/test_app/config/secrets.yml | 22 ----- 32 files changed, 195 insertions(+), 484 deletions(-) create mode 100644 spec/app.rb rename spec/{test_app/app/assets/javascripts => app}/application.rb (69%) create mode 100644 spec/canvas/canvas_spec.rb delete mode 100644 spec/test_app/app/assets/stylesheets/application.css delete mode 100644 spec/test_app/app/controllers/application_controller.rb delete mode 100644 spec/test_app/app/controllers/test_controller.rb delete mode 100644 spec/test_app/config.ru delete mode 100644 spec/test_app/config/application.rb delete mode 100644 spec/test_app/config/boot.rb delete mode 100644 spec/test_app/config/environment.rb delete mode 100644 spec/test_app/config/environments/development.rb delete mode 100644 spec/test_app/config/environments/production.rb delete mode 100644 spec/test_app/config/environments/test.rb delete mode 100644 spec/test_app/config/initializers/assets.rb delete mode 100644 spec/test_app/config/initializers/backtrace_silencers.rb delete mode 100644 spec/test_app/config/initializers/cookies_serializer.rb delete mode 100644 spec/test_app/config/initializers/filter_parameter_logging.rb delete mode 100644 spec/test_app/config/initializers/inflections.rb delete mode 100644 spec/test_app/config/initializers/mime_types.rb delete mode 100644 spec/test_app/config/initializers/session_store.rb delete mode 100644 spec/test_app/config/initializers/synchromesh.rb delete mode 100644 spec/test_app/config/initializers/wrap_parameters.rb delete mode 100644 spec/test_app/config/locales/en.yml delete mode 100644 spec/test_app/config/routes.rb delete mode 100644 spec/test_app/config/secrets.yml diff --git a/Gemfile b/Gemfile index 16379f6b..2b3a2b89 100644 --- a/Gemfile +++ b/Gemfile @@ -16,7 +16,7 @@ gem 'rest-client', require: false gem 'opal', ['>= 1.0', '< 2.0'] gem 'paggio', github: 'meh/paggio' -# hyper-spec (for testing http requests) +# hyper-spec (for testing http requests, and DOM features) git 'https://github.com/hyperstack-org/hyperstack.git', branch: 'edge', glob: 'ruby/*/*.gemspec' do gem 'hyper-spec' end diff --git a/Rakefile b/Rakefile index 6626ef91..a556cd92 100644 --- a/Rakefile +++ b/Rakefile @@ -8,18 +8,18 @@ require 'rspec/core/rake_task' # a few specs require a "real DOM" and/or a server response, so these # specs are run using the hyper-spec gem. These specs are marked with -# the :js tag. +# the server_side_test tag. # The remaining specs can be run using opal-rspec # All the specs will run in the browser using opal-rspec: # just run bundle exec rackup, and browse localhost:9292 -# See spec/spec_helper and config.ru for more details +# See spec/spec_helper.rb, spec/app.rb, and config.ru for more details RSpec::Core::RakeTask.new(:server_and_client_specs) do |t| t.rspec_opts = '--tag js' - t.pattern = 'spec/http_spec.rb,spec/native_cached_wrapper_spec.rb' + t.pattern = 'spec/http_spec.rb,spec/native_cached_wrapper_spec.rb,spec/canvas/**/*_spec.rb' end Opal::RSpec::RakeTask.new(:opal_rspec_runner) do |_, task| diff --git a/config.ru b/config.ru index 89bf1534..f2aa2cae 100644 --- a/config.ru +++ b/config.ru @@ -1,5 +1,6 @@ require 'bundler' Bundler.require +require './spec/app' apps = [] @@ -15,67 +16,5 @@ apps << Opal::Sprockets::Server.new(sprockets: sprockets_env) { |s| s.debug = false } -apps << Class.new(Sinatra::Base) { - get '/http' do - "lol" - end - - post '/http' do - if params['lol'] == 'wut' - "ok" - else - "fail" - end - end - - put '/http' do - if params['lol'] == 'wut' - "ok" - else - "fail" - end - end - - delete '/http' do - "lol" - end - - post '/http-file' do - if params['lol'] == 'wut' && - params['file'][:filename] == 'yay.txt' && - params['file'][:tempfile].read == 'content' - - "ok" - else - "fail" - end - end - - get '/events' do - headers 'Content-Type' => 'text/event-stream' - - stream do |out| - sleep 0.2 - - out << "data: lol\n" << "\n" - out << "event: custom\n" << "data: omg\n" << "\n" - out << "data: wut\n" << "\n" - - sleep 10 - end - end - - get '/socket' do - request.websocket do |ws| - ws.onopen do - ws.send 'lol' - end - - ws.onmessage do |msg| - ws.send msg - end - end - end -} - +apps << app run Rack::Cascade.new(apps) diff --git a/opal/browser/canvas.rb b/opal/browser/canvas.rb index eec171ca..92c93e21 100644 --- a/opal/browser/canvas.rb +++ b/opal/browser/canvas.rb @@ -12,7 +12,7 @@ class Canvas attr_reader :element, :style, :text - def initialize(*args) + def initialize(*args, &block) if DOM::Element === args.first element = args.shift @@ -49,6 +49,8 @@ def initialize(*args) if @image draw_image(@image) end + + instance_eval(&block) if block_given? end def width @@ -93,6 +95,10 @@ def gradient(*args, &block) Gradient.new(self, *args, &block) end + def stroke=(value) + Browser::Canvas::Style.new(self).stroke = value + end + def clear(x = nil, y = nil, width = nil, height = nil) x ||= 0 y ||= 0 diff --git a/opal/browser/canvas/data.rb b/opal/browser/canvas/data.rb index 6123aa34..465a2d40 100644 --- a/opal/browser/canvas/data.rb +++ b/opal/browser/canvas/data.rb @@ -35,6 +35,10 @@ def length `#@native.data.length` end + def to_a + `Array.prototype.slice.call(#@native.data)` + end + def [](index) `#@native.data[index]` end diff --git a/opal/browser/canvas/gradient.rb b/opal/browser/canvas/gradient.rb index e6904daf..e24dbc7c 100644 --- a/opal/browser/canvas/gradient.rb +++ b/opal/browser/canvas/gradient.rb @@ -8,18 +8,30 @@ class Gradient def initialize(context, *args, &block) @context = context - super(case args.length - when 4 then `#{@context.to_n}.createLinearGradient.apply(self, args)` - when 6 then `#{@context.to_n}.createRadialGradient.apply(self, args)` - else raise ArgumentError, "don't know where to dispatch" - end) - - instance_eval(&block) + _this = @context.to_n + + *args, stops = args if args.length.odd? + + super case args.length + when 4 then `_this.createLinearGradient.apply(_this, args)` + when 6 then `_this.createRadialGradient.apply(_this, args)` + else raise ArgumentError, + 'Gradients must be created with 4 or 6 parameters' + end + add_stops(stops) + instance_eval(&block) if block_given? end def add(position, color) - `#{@context.to_n}.addColorStop(position, color)` + `#{to_n}.addColorStop(position, color)` + self + end + + alias add_stop add + alias add_color_stop add + def add_stops(stops) + stops&.each { |position, color| add_stop(position, color) } self end end diff --git a/spec/app.rb b/spec/app.rb new file mode 100644 index 00000000..38d885f6 --- /dev/null +++ b/spec/app.rb @@ -0,0 +1,82 @@ +require 'bundler' +Bundler.require + +get '/http' do + "lol" +end + +post '/http' do + if params['lol'] == 'wut' + "ok" + else + "fail" + end +end + +put '/http' do + if params['lol'] == 'wut' + "ok" + else + "fail" + end +end + +delete '/http' do + "lol" +end + +post '/http-file' do + if params['lol'] == 'wut' && + params['file'][:filename] == 'yay.txt' && + params['file'][:tempfile].read == 'content' + + "ok" + else + "fail" + end +end + +get '/events' do + headers 'Content-Type' => 'text/event-stream' + + stream do |out| + sleep 0.2 + + out << "data: lol\n" << "\n" + out << "event: custom\n" << "data: omg\n" << "\n" + out << "data: wut\n" << "\n" + + sleep 10 + end +end + +get '/socket' do + request.websocket do |ws| + ws.onopen do + ws.send 'lol' + end + + ws.onmessage do |msg| + ws.send msg + end + end +end + +module OpalSprocketsServer + def self.opal + @opal ||= Opal::Sprockets::Server.new do |s| + s.append_path 'spec/app' + s.main = 'application' + s.debug = ENV['RACK_ENV'] != 'production' + end + end +end + +def app + Rack::Builder.app do + map '/assets' do + run OpalSprocketsServer.opal.sprockets + end + run Sinatra::Application + end +end diff --git a/spec/test_app/app/assets/javascripts/application.rb b/spec/app/application.rb similarity index 69% rename from spec/test_app/app/assets/javascripts/application.rb rename to spec/app/application.rb index 1e8680c8..d46e8a05 100644 --- a/spec/test_app/app/assets/javascripts/application.rb +++ b/spec/app/application.rb @@ -1,3 +1,4 @@ require 'opal' require 'browser' require 'browser/http' +require 'browser/canvas' diff --git a/spec/canvas/canvas_spec.rb b/spec/canvas/canvas_spec.rb new file mode 100644 index 00000000..82f52301 --- /dev/null +++ b/spec/canvas/canvas_spec.rb @@ -0,0 +1,56 @@ +require 'spec_helper' +require 'browser/canvas' if RUBY_ENGINE == 'opal' + +# reset between each example to insure the DOM starts clean +describe 'Browser::Canvas', js: true, no_reset: false do + context 'Gradient' do + matcher :draw_the_correct_image do + match do |expected_canvas| + # Assume the spec is delivering a square canvas and + # each pixel is made of 4 bytes for R, G, B, and Alpha channel + + size = ((expected_canvas.length / 4)**0.5).to_i + canvas = expected_canvas.each_slice(4).each_slice(size).to_a + + # canvas should be a diagonal line of red pixels all the way, no + # green, and blue increasing from 0 to 255 +/- for antialiasing. + last_blue_pixel = 0 + + (size - 1).times do |i| + pixel = canvas[i][i] + break if pixel[0] != 255 || pixel[1] != 0 + break unless pixel[2].between?(last_blue_pixel, last_blue_pixel + 5) + + last_blue_pixel = pixel[2] + end && last_blue_pixel.between?(254, 255) + end + end + + html "" + + it 'can create a linear gradient' do + expect do + canvas = $document['canvas'] + context = Browser::Canvas.new(canvas) + gradient = context.gradient(50, 50, 150, 150) + gradient.add(0, '#ff0000') + gradient.add(1, '#ff00ff') + context.stroke = gradient + context.begin + context.line(50, 50, 150, 150) + context.stroke + context.close + context.data(50, 50, 101, 101).to_a + end.to_on_client draw_the_correct_image + end + + it 'can use blocks and helpers to clean things up' do + expect do + Browser::Canvas.new($document['canvas']) do + self.stroke = gradient(50, 50, 150, 150, 0 => '#ff0000', 1 => '#ff00ff') + path { line(50, 50, 150, 150).stroke } + end.data(50, 50, 101, 101).to_a + end.to_on_client draw_the_correct_image + end + end +end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 6cf17390..33663837 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -13,13 +13,20 @@ if RUBY_ENGINE != 'opal' # setup to run the server side specs - require 'hyper-spec' + require 'hyper-spec/rack' require 'opal-browser' - ENV['RAILS_ENV'] ||= 'test' - require File.expand_path('../test_app/config/environment', __FILE__) + ENV['RACK_ENV'] ||= 'test' - require 'rspec/rails' + require File.join(File.dirname(__FILE__), 'app.rb') + + Capybara.app = HyperSpecTestController.wrap(app: app, append_path: 'spec/app') + + # Setup Test Environment + set :environment, :test + set :run, false + set :raise_errors, true + set :logging, false module Helpers def html(html_string = '') @@ -37,10 +44,18 @@ def server_side_test end end + # allow use of server_side_test in outer scope as well + + def server_side_test + :js # run in capybara js mode + end + RSpec.configure do |config| config.extend Helpers end + HyperSpec.reset_between_examples = false + else require 'browser' require 'console' diff --git a/spec/test_app/app/assets/stylesheets/application.css b/spec/test_app/app/assets/stylesheets/application.css deleted file mode 100644 index c5f06469..00000000 --- a/spec/test_app/app/assets/stylesheets/application.css +++ /dev/null @@ -1,14 +0,0 @@ -/* - * This is a manifest file that'll be compiled into application.css, which will include all the files - * listed below. - * - * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, - * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path. - * - * You're free to add application-wide styles to this file and they'll appear at the bottom of the - * compiled file so the styles you add here take precedence over styles defined in any styles - * defined in the other CSS/SCSS files in this directory. It is generally better to create a new - * file per style scope. - * - *= require_self - */ diff --git a/spec/test_app/app/controllers/application_controller.rb b/spec/test_app/app/controllers/application_controller.rb deleted file mode 100644 index b7b8656c..00000000 --- a/spec/test_app/app/controllers/application_controller.rb +++ /dev/null @@ -1,13 +0,0 @@ -class ApplicationController < ActionController::Base - # Prevent CSRF attacks by raising an exception. - # For APIs, you may want to use :null_session instead. - protect_from_forgery with: :exception - - class << self - attr_accessor :acting_user - end - - def acting_user - ApplicationController.acting_user - end -end diff --git a/spec/test_app/app/controllers/test_controller.rb b/spec/test_app/app/controllers/test_controller.rb deleted file mode 100644 index 2b369396..00000000 --- a/spec/test_app/app/controllers/test_controller.rb +++ /dev/null @@ -1,19 +0,0 @@ -class TestController < ApplicationController - def get_delete - render plain: 'lol' - end - - def post_put - raise 'lol param does not eq wut' unless params['lol'] == 'wut' - - render plain: 'ok' - end - - def post_file - file = params['file'] - raise 'bad file name' unless file.original_filename == 'yay.txt' - raise 'bad content' unless file.tempfile.read == 'content' - - render plain: 'ok' - end -end diff --git a/spec/test_app/config.ru b/spec/test_app/config.ru deleted file mode 100644 index bd83b254..00000000 --- a/spec/test_app/config.ru +++ /dev/null @@ -1,4 +0,0 @@ -# This file is used by Rack-based servers to start the application. - -require ::File.expand_path('../config/environment', __FILE__) -run Rails.application diff --git a/spec/test_app/config/application.rb b/spec/test_app/config/application.rb deleted file mode 100644 index 50d2b96b..00000000 --- a/spec/test_app/config/application.rb +++ /dev/null @@ -1,51 +0,0 @@ - -require "rails" -# Pick the frameworks you want: -require "active_model/railtie" -require "active_job/railtie" -# require "active_record/railtie" -require "action_controller/railtie" -require "action_mailer/railtie" -require "action_view/railtie" -require "sprockets/railtie" -require "rails/test_unit/railtie" -require File.expand_path('../boot', __FILE__) - -# Require the gems listed in Gemfile, including any gems -# you've limited to :test, :development, or :production. -Bundler.require(*Rails.groups(assets: %w(development test))) - -require 'opal-rails' - -module TestApp - class Application < Rails::Application - #config.action_cable.allowed_request_origins = [/http\:\/\/127\.0\.0\.1\:[0-9]*/] - config.eager_load_paths += %W(#{config.root}/app/models/public) - config.autoload_paths += %W(#{config.root}/app/models/public) - config.assets.paths << ::Rails.root.join('app', 'models').to_s - config.opal.method_missing = true - config.opal.optimized_operators = true - config.opal.arity_check = false - config.opal.const_missing = true - config.opal.dynamic_require_severity = :ignore - config.opal.enable_specs = true - config.opal.spec_location = 'spec-opal' - - config.assets.cache_store = :null_store - - # Settings in config/environments/* take precedence over those specified here. - # Application configuration should go into files in config/initializers - # -- all .rb files in that directory are automatically loaded. - - # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. - # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. - # config.time_zone = 'Central Time (US & Canada)' - - # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. - # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] - # config.i18n.default_locale = :de - - # Do not swallow errors in after_commit/after_rollback callbacks. - #config.active_record.raise_in_transactional_callbacks = true - end -end diff --git a/spec/test_app/config/boot.rb b/spec/test_app/config/boot.rb deleted file mode 100644 index 074f5557..00000000 --- a/spec/test_app/config/boot.rb +++ /dev/null @@ -1,6 +0,0 @@ -require 'rubygems' -gemfile = File.expand_path("../../../../Gemfile", __FILE__) - -ENV['BUNDLE_GEMFILE'] = gemfile -require 'bundler' -Bundler.setup diff --git a/spec/test_app/config/environment.rb b/spec/test_app/config/environment.rb deleted file mode 100644 index ee8d90dc..00000000 --- a/spec/test_app/config/environment.rb +++ /dev/null @@ -1,5 +0,0 @@ -# Load the Rails application. -require File.expand_path('../application', __FILE__) - -# Initialize the Rails application. -Rails.application.initialize! diff --git a/spec/test_app/config/environments/development.rb b/spec/test_app/config/environments/development.rb deleted file mode 100644 index 4c00d87a..00000000 --- a/spec/test_app/config/environments/development.rb +++ /dev/null @@ -1,41 +0,0 @@ -Rails.application.configure do - # Settings specified here will take precedence over those in config/application.rb. - - # In the development environment your application's code is reloaded on - # every request. This slows down response time but is perfect for development - # since you don't have to restart the web server when you make code changes. - config.cache_classes = false - - # Do not eager load code on boot. - config.eager_load = false - - # Show full error reports and disable caching. - config.consider_all_requests_local = true - config.action_controller.perform_caching = false - - # Don't care if the mailer can't send. - config.action_mailer.raise_delivery_errors = false - - # Print deprecation notices to the Rails logger. - config.active_support.deprecation = :log - - # Raise an error on page load if there are pending migrations. - #config.active_record.migration_error = :page_load - - # Debug mode disables concatenation and preprocessing of assets. - # This option may cause significant delays in view rendering with a large - # number of complex assets. - config.assets.debug = false - - # Asset digests allow you to set far-future HTTP expiration dates on all assets, - # yet still be able to expire them through the digest params. - config.assets.digest = true - - # Adds additional error checking when serving assets at runtime. - # Checks for improperly declared sprockets dependencies. - # Raises helpful error messages. - config.assets.raise_runtime_errors = true - - # Raises error for missing translations - # config.action_view.raise_on_missing_translations = true -end diff --git a/spec/test_app/config/environments/production.rb b/spec/test_app/config/environments/production.rb deleted file mode 100644 index 5c1b32e4..00000000 --- a/spec/test_app/config/environments/production.rb +++ /dev/null @@ -1,79 +0,0 @@ -Rails.application.configure do - # Settings specified here will take precedence over those in config/application.rb. - - # Code is not reloaded between requests. - config.cache_classes = true - - # Eager load code on boot. This eager loads most of Rails and - # your application in memory, allowing both threaded web servers - # and those relying on copy on write to perform better. - # Rake tasks automatically ignore this option for performance. - config.eager_load = true - - # Full error reports are disabled and caching is turned on. - config.consider_all_requests_local = false - config.action_controller.perform_caching = true - - # Enable Rack::Cache to put a simple HTTP cache in front of your application - # Add `rack-cache` to your Gemfile before enabling this. - # For large-scale production use, consider using a caching reverse proxy like - # NGINX, varnish or squid. - # config.action_dispatch.rack_cache = true - - # Disable serving static files from the `/public` folder by default since - # Apache or NGINX already handles this. - config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present? - - # Compress JavaScripts and CSS. - config.assets.js_compressor = :uglifier - # config.assets.css_compressor = :sass - - # Do not fallback to assets pipeline if a precompiled asset is missed. - config.assets.compile = false - - # Asset digests allow you to set far-future HTTP expiration dates on all assets, - # yet still be able to expire them through the digest params. - config.assets.digest = true - - # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb - - # Specifies the header that your server uses for sending files. - # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache - # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX - - # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. - # config.force_ssl = true - - # Use the lowest log level to ensure availability of diagnostic information - # when problems arise. - config.log_level = :debug - - # Prepend all log lines with the following tags. - # config.log_tags = [ :subdomain, :uuid ] - - # Use a different logger for distributed setups. - # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) - - # Use a different cache store in production. - # config.cache_store = :mem_cache_store - - # Enable serving of images, stylesheets, and JavaScripts from an asset server. - # config.action_controller.asset_host = 'http://assets.example.com' - - # Ignore bad email addresses and do not raise email delivery errors. - # Set this to true and configure the email server for immediate delivery to raise delivery errors. - # config.action_mailer.raise_delivery_errors = false - - # Enable locale fallbacks for I18n (makes lookups for any locale fall back to - # the I18n.default_locale when a translation cannot be found). - config.i18n.fallbacks = true - - # Send deprecation notices to registered listeners. - config.active_support.deprecation = :notify - - # Use default logging formatter so that PID and timestamp are not suppressed. - config.log_formatter = ::Logger::Formatter.new - - # Do not dump schema after migrations. - config.active_record.dump_schema_after_migration = false -end diff --git a/spec/test_app/config/environments/test.rb b/spec/test_app/config/environments/test.rb deleted file mode 100644 index de6cdf36..00000000 --- a/spec/test_app/config/environments/test.rb +++ /dev/null @@ -1,46 +0,0 @@ -Rails.application.configure do - # Settings specified here will take precedence over those in config/application.rb. - - # The test environment is used exclusively to run your application's - # test suite. You never need to work with it otherwise. Remember that - # your test database is "scratch space" for the test suite and is wiped - # and recreated between test runs. Don't rely on the data there! - config.cache_classes = false - - # Do not eager load code on boot. This avoids loading your whole application - # just for the purpose of running a single test. If you are using a tool that - # preloads Rails for running tests, you may have to set it to true. - config.eager_load = false - - # Configure static file server for tests with Cache-Control for performance. - config.public_file_server.enabled = true - config.public_file_server.headers = { 'Cache-Control' => 'public, max-age=3600' } - - # Show full error reports and disable caching. - config.consider_all_requests_local = true - config.action_controller.perform_caching = false - - # Raise exceptions instead of rendering exception templates. - config.action_dispatch.show_exceptions = false - - # Disable request forgery protection in test environment. - config.action_controller.allow_forgery_protection = false - - # Tell Action Mailer not to deliver emails to the real world. - # The :test delivery method accumulates sent emails in the - # ActionMailer::Base.deliveries array. - config.action_mailer.delivery_method = :test - - # Randomize the order test cases are executed. - config.active_support.test_order = :random - - # Print deprecation notices to the stderr. - config.active_support.deprecation = :stderr - - config.assets.paths << ::Rails.root.join('spec', 'assets', 'stylesheets').to_s - config.assets.paths << ::Rails.root.join('spec', 'assets', 'javascripts').to_s - - - # Raises error for missing translations - # config.action_view.raise_on_missing_translations = true -end diff --git a/spec/test_app/config/initializers/assets.rb b/spec/test_app/config/initializers/assets.rb deleted file mode 100644 index 9c39b88b..00000000 --- a/spec/test_app/config/initializers/assets.rb +++ /dev/null @@ -1,12 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# Version of your assets, change this if you want to expire all your assets. -Rails.application.config.assets.version = '1.0' -Rails.application.config.assets.precompile += %w[time_cop.js factorial.js test.css] - -# Add additional assets to the asset load path -# Rails.application.config.assets.paths << Emoji.images_path - -# Precompile additional assets. -# application.js, application.css, and all non-JS/CSS in app/assets folder are already added. -# Rails.application.config.assets.precompile += %w( search.js ) diff --git a/spec/test_app/config/initializers/backtrace_silencers.rb b/spec/test_app/config/initializers/backtrace_silencers.rb deleted file mode 100644 index 59385cdf..00000000 --- a/spec/test_app/config/initializers/backtrace_silencers.rb +++ /dev/null @@ -1,7 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. -# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } - -# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. -# Rails.backtrace_cleaner.remove_silencers! diff --git a/spec/test_app/config/initializers/cookies_serializer.rb b/spec/test_app/config/initializers/cookies_serializer.rb deleted file mode 100644 index 7f70458d..00000000 --- a/spec/test_app/config/initializers/cookies_serializer.rb +++ /dev/null @@ -1,3 +0,0 @@ -# Be sure to restart your server when you modify this file. - -Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/spec/test_app/config/initializers/filter_parameter_logging.rb b/spec/test_app/config/initializers/filter_parameter_logging.rb deleted file mode 100644 index 4a994e1e..00000000 --- a/spec/test_app/config/initializers/filter_parameter_logging.rb +++ /dev/null @@ -1,4 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# Configure sensitive parameters which will be filtered from the log file. -Rails.application.config.filter_parameters += [:password] diff --git a/spec/test_app/config/initializers/inflections.rb b/spec/test_app/config/initializers/inflections.rb deleted file mode 100644 index ac033bf9..00000000 --- a/spec/test_app/config/initializers/inflections.rb +++ /dev/null @@ -1,16 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# Add new inflection rules using the following format. Inflections -# are locale specific, and you may define rules for as many different -# locales as you wish. All of these examples are active by default: -# ActiveSupport::Inflector.inflections(:en) do |inflect| -# inflect.plural /^(ox)$/i, '\1en' -# inflect.singular /^(ox)en/i, '\1' -# inflect.irregular 'person', 'people' -# inflect.uncountable %w( fish sheep ) -# end - -# These inflection rules are supported but not enabled by default: -# ActiveSupport::Inflector.inflections(:en) do |inflect| -# inflect.acronym 'RESTful' -# end diff --git a/spec/test_app/config/initializers/mime_types.rb b/spec/test_app/config/initializers/mime_types.rb deleted file mode 100644 index dc189968..00000000 --- a/spec/test_app/config/initializers/mime_types.rb +++ /dev/null @@ -1,4 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# Add new mime types for use in respond_to blocks: -# Mime::Type.register "text/richtext", :rtf diff --git a/spec/test_app/config/initializers/session_store.rb b/spec/test_app/config/initializers/session_store.rb deleted file mode 100644 index 438994fb..00000000 --- a/spec/test_app/config/initializers/session_store.rb +++ /dev/null @@ -1,3 +0,0 @@ -# Be sure to restart your server when you modify this file. - -Rails.application.config.session_store :cookie_store, key: '_test_app_session' diff --git a/spec/test_app/config/initializers/synchromesh.rb b/spec/test_app/config/initializers/synchromesh.rb deleted file mode 100644 index 2ec97d6b..00000000 --- a/spec/test_app/config/initializers/synchromesh.rb +++ /dev/null @@ -1,11 +0,0 @@ -# require 'pusher' -# Pusher.app_id = "MY_TEST_ID" -# Pusher.key = "MY_TEST_KEY" -# Pusher.secret = "MY_TEST_SECRET" -# require 'pusher-fake' -# -# HyperMesh.configuration do |config| -# config.transport = :pusher -# config.channel_prefix = "synchromesh" -# config.opts = {app_id: Pusher.app_id, key: Pusher.key, secret: Pusher.secret}.merge(PusherFake.configuration.web_options) -# end diff --git a/spec/test_app/config/initializers/wrap_parameters.rb b/spec/test_app/config/initializers/wrap_parameters.rb deleted file mode 100644 index 33725e95..00000000 --- a/spec/test_app/config/initializers/wrap_parameters.rb +++ /dev/null @@ -1,14 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# This file contains settings for ActionController::ParamsWrapper which -# is enabled by default. - -# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. -ActiveSupport.on_load(:action_controller) do - wrap_parameters format: [:json] if respond_to?(:wrap_parameters) -end - -# To enable root element in JSON for ActiveRecord objects. -# ActiveSupport.on_load(:active_record) do -# self.include_root_in_json = true -# end diff --git a/spec/test_app/config/locales/en.yml b/spec/test_app/config/locales/en.yml deleted file mode 100644 index 06539571..00000000 --- a/spec/test_app/config/locales/en.yml +++ /dev/null @@ -1,23 +0,0 @@ -# Files in the config/locales directory are used for internationalization -# and are automatically loaded by Rails. If you want to use locales other -# than English, add the necessary files in this directory. -# -# To use the locales, use `I18n.t`: -# -# I18n.t 'hello' -# -# In views, this is aliased to just `t`: -# -# <%= t('hello') %> -# -# To use a different locale, set it with `I18n.locale`: -# -# I18n.locale = :es -# -# This would use the information in config/locales/es.yml. -# -# To learn more, please read the Rails Internationalization guide -# available at http://guides.rubyonrails.org/i18n.html. - -en: - hello: "Hello world" diff --git a/spec/test_app/config/routes.rb b/spec/test_app/config/routes.rb deleted file mode 100644 index 6b17c9b8..00000000 --- a/spec/test_app/config/routes.rb +++ /dev/null @@ -1,7 +0,0 @@ -Rails.application.routes.draw do - get 'http' => 'test#get_delete' - post 'http' => 'test#post_put' - put 'http' => 'test#post_put' - delete 'http' => 'test#get_delete' - post 'http-file' => 'test#post_file' -end diff --git a/spec/test_app/config/secrets.yml b/spec/test_app/config/secrets.yml deleted file mode 100644 index 9dc0430a..00000000 --- a/spec/test_app/config/secrets.yml +++ /dev/null @@ -1,22 +0,0 @@ -# Be sure to restart your server when you modify this file. - -# Your secret key is used for verifying the integrity of signed cookies. -# If you change this key, all old signed cookies will become invalid! - -# Make sure the secret is at least 30 characters and all random, -# no regular words or you'll be exposed to dictionary attacks. -# You can use `rake secret` to generate a secure secret key. - -# Make sure the secrets in this file are kept private -# if you're sharing your code publicly. - -development: - secret_key_base: ad4964ee73093a0573860466d1e714c8e7b1103d56bbae9e7c7b9843163e51aa9b85c2fef3979a29dbeb0d77a8ade834d77b04890042a45b8121068c2a0e8cba - -test: - secret_key_base: b1cc8e3d36a79eed70d5aa66b05ff6aa8872a43adbeaa8c9f6d21a5bd1b65f231c56a4efadc73c975ccfc5bbd7f238c0db0fe4b5a116353b646cb6de369f8063 - -# Do not keep production secrets in the repository, -# instead read values from the environment. -production: - secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>