Facebook
From Gruff Dove, 2 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 175
  1. rohan@Rehoboam:~/repos/back-end/rails/private-events$ rails s
  2. => Booting Puma
  3. => Rails 7.0.4 application starting in development
  4. => Run `bin/rails server --help` for more startup options
  5. Puma starting in single mode...
  6. * Puma version: 5.6.5 (ruby 3.1.2-p20) ("Birdie's Version")
  7. *  Min threads: 5
  8. *  Max threads: 5
  9. *  Environment: development
  10. *          PID: 8699
  11. * Listening on http://127.0.0.1:3000
  12. * Listening on http://[::1]:3000
  13. Use Ctrl-C to stop
  14. Started GET "/users/sign_up" for ::1 at 2023-02-08 12:35:09 +0530
  15.   ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
  16. Processing by Devise::RegistrationsController#new as HTML
  17.   Rendering layout layouts/application.html.erb
  18.   Rendering devise/registrations/new.html.erb within layouts/application
  19.   Rendered devise/shared/_error_messages.html.erb (Duration: 1.6ms | Allocations: 245)
  20.   Rendered devise/shared/_links.html.erb (Duration: 3.8ms | Allocations: 582)
  21.   Rendered devise/registrations/new.html.erb within layouts/application (Duration: 22.0ms | Allocations: 5643)
  22.   Rendered layout layouts/application.html.erb (Duration: 90.7ms | Allocations: 40097)
  23. Completed 200 OK in 122ms (Views: 96.8ms | ActiveRecord: 0.8ms | Allocations: 50627)
  24.  
  25.  
  26. Started POST "/users" for ::1 at 2023-02-08 12:35:16 +0530
  27. Processing by Devise::RegistrationsController#create as TURBO_STREAM
  28.   Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
  29. Completed 500 Internal Server Error in 43ms (ActiveRecord: 0.0ms | Allocations: 5186)
  30.  
  31.  
  32.  
  33. NameError (undefined local variable or method `rendering_options' for #<Users::DeviseController::Responder:0x00007f6f24372400 @controller=#<Devise::RegistrationsController:0x0000000000bc98>, @request=#<ActionDispatch::Request POST "http://localhost:3000/users" for ::1>, @format=:turbo_stream, @resource=#<User id: nil, email: "", first_name: "", last_name: "", created_at: nil, updated_at: nil>, @resources=[#<User id: nil, email: "", first_name: "", last_name: "", created_at: nil, updated_at: nil>], @options={}, @action=:new, @default_response=nil>
  34.  
  35.         render rendering_options.merge(formats: :html, status: :unprocessable_entity)
  36.                ^^^^^^^^^^^^^^^^^):
  37.  
  38. app/controllers/users/devise_controller.rb:13:in `rescue in to_turbo_stream'
  39. app/controllers/users/devise_controller.rb:3:in `to_turbo_stream'