saruman_87

Untitled

Jul 6th, 2020
648
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. .9ms) SELECT sqlite_version(*)
  2. (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
  3. Processing by UsersController#index as HTML
  4. Rendering users/index.html.erb within layouts/application
  5. User Load (0.3ms) SELECT "users".* FROM "users"
  6. ↳ app/views/users/index.html.erb:8
  7. Rendered users/index.html.erb within layouts/application (Duration: 5.4ms | Allocations: 1471)
  8. /home/saruman/.rvm/gems/ruby-2.7.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/helper.rb:355: warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call
  9. /home/saruman/.rvm/gems/ruby-2.7.0/gems/sprockets-4.0.2/lib/sprockets/base.rb:118: warning: The called method `[]' is defined here
  10. [Webpacker] Everything's up-to-date. Nothing to do
  11. Completed 200 OK in 48ms (Views: 38.0ms | ActiveRecord: 0.9ms | Allocations: 14278)
  12.  
  13.  
  14. Started GET "/users/new" for ::1 at 2020-07-06 14:02:24 +0300
  15. Processing by UsersController#new as HTML
  16. Rendering users/new.html.erb within layouts/application
  17. Rendered users/new.html.erb within layouts/application (Duration: 5.3ms | Allocations: 1772)
  18. [Webpacker] Everything's up-to-date. Nothing to do
  19. Completed 200 OK in 31ms (Views: 14.8ms | ActiveRecord: 0.7ms | Allocations: 11013)
  20.  
  21.  
  22. Started POST "/users" for ::1 at 2020-07-06 14:02:54 +0300
  23. Processing by UsersController#create as HTML
  24. Parameters: {"authenticity_token"=>"9zJFZBYJPyIxR5m8C2jyNxClSFxDGbrCk+iD3l5X9iK3TUJtvsrIKMycoAfbU+d3ZfpPkBbdspssFV93etN78w==", "user"=>{"email"=>"[email protected]", "username"=>"saruman", "name"=>"Ruslan", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Зарегистрироваться"}
  25. Unpermitted parameter: :password
  26. (0.1ms) begin transaction
  27. ↳ app/controllers/users_controller.rb:12:in `create'
  28. User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = ? LIMIT ? [["username", "saruman"], ["LIMIT", 1]]
  29. ↳ app/controllers/users_controller.rb:12:in `create'
  30. User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "[email protected]"], ["LIMIT", 1]]
  31. ↳ app/controllers/users_controller.rb:12:in `create'
  32. (0.1ms) rollback transaction
  33. ↳ app/controllers/users_controller.rb:12:in `create'
  34. Rendering users/new.html.erb within layouts/application
  35. Rendered users/new.html.erb within layouts/application (Duration: 2.1ms | Allocations: 988)
  36. [Webpacker] Everything's up-to-date. Nothing to do
  37. Completed 200 OK in 29ms (Views: 9.0ms | ActiveRecord: 0.8ms | Allocations: 11641)
Add Comment
Please, Sign In to add comment