Guest User

Untitled

a guest
Mar 22nd, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 6.53 KB | None | 0 0
  1.  primero git:(development_v2) rails s                          
  2. warning: parser/current is loading parser/ruby26, which recognizes
  3. warning: 2.6.2-compliant syntax, but you are running 2.6.5.
  4. warning: please see https://github.com/whitequark/parser#compatibility-with-ruby-mri.
  5. => Booting Puma
  6. => Rails 5.2.4 application starting in development
  7. => Run `rails server -h` for more startup options
  8. Puma starting in single mode...
  9. * Version 4.3.1 (ruby 2.6.5-p114), codename: Mysterious Traveller
  10. * Min threads: 5, max threads: 5
  11. * Environment: development
  12. * Listening on tcp://0.0.0.0:3000
  13. Use Ctrl-C to stop
  14. I, [2020-03-22T17:27:55.089922 #7511]  INFO -- : Started GET "/" for 127.0.0.1 at 2020-03-22 17:27:55 +0530
  15. I, [2020-03-22T17:27:55.191375 #7511]  INFO -- : Processing by HomeController#v2 as HTML
  16. I, [2020-03-22T17:28:48.175640 #7511]  INFO -- : Completed 200 OK in 52984ms (Views: 52983.3ms | ActiveRecord: 0.0ms | Solr: 0.0ms)
  17.  
  18.  
  19. I, [2020-03-22T17:28:52.435859 #7511]  INFO -- : Started GET "/api/v2/identity_providers" for 127.0.0.1 at 2020-03-22 17:28:52 +0530
  20. I, [2020-03-22T17:28:52.529826 #7511]  INFO -- : Started GET "/api/v2/contact_information" for 127.0.0.1 at 2020-03-22 17:28:52 +0530
  21. I, [2020-03-22T17:28:52.558583 #7511]  INFO -- : Processing by Api::V2::IdentityProvidersController#index as JSON
  22. I, [2020-03-22T17:28:52.558868 #7511]  INFO -- :   Parameters: {"identity_provider"=>{}}
  23. D, [2020-03-22T17:28:52.579642 #7511] DEBUG -- :   SystemSettings Load (1.3ms)  SELECT  "system_settings".* FROM "system_settings" ORDER BY "system_settings"."id" ASC LIMIT $1  [["LIMIT", 1]]
  24. I, [2020-03-22T17:28:52.603531 #7511]  INFO -- : Processing by Api::V2::ContactInformationController#show as JSON
  25. I, [2020-03-22T17:28:52.603774 #7511]  INFO -- :   Parameters: {"contact_information"=>{}}
  26. D, [2020-03-22T17:28:52.617891 #7511] DEBUG -- :   IdentityProvider Load (22.6ms)  SELECT "identity_providers".* FROM "identity_providers"
  27. I, [2020-03-22T17:28:52.669051 #7511]  INFO -- : Completed 200 OK in 110ms (Views: 52.7ms | ActiveRecord: 94.9ms | Solr: 0.0ms)
  28.  
  29.  
  30. D, [2020-03-22T17:28:52.701081 #7511] DEBUG -- :   ContactInformation Load (92.0ms)  SELECT  "contact_informations".* FROM "contact_informations" ORDER BY "contact_informations"."id" ASC LIMIT $1  [["LIMIT", 1]]
  31. D, [2020-03-22T17:28:52.964834 #7511] DEBUG -- :   Agency Load (40.2ms)  SELECT  "agencies".* FROM "agencies" WHERE "agencies"."disabled" != $1 AND "agencies"."logo_enabled" = $2 LIMIT $3  [["disabled", true], ["logo_enabled", true], ["LIMIT", 3]]
  32. I, [2020-03-22T17:28:52.965463 #7511]  INFO -- : Completed 200 OK in 361ms (Views: 15.7ms | ActiveRecord: 160.9ms | Solr: 0.0ms)
  33.  
  34.  
  35. I, [2020-03-22T17:28:53.119588 #7511]  INFO -- : Started GET "/images/favicon-16x16.png?v=3" for 127.0.0.1 at 2020-03-22 17:28:53 +0530
  36. F, [2020-03-22T17:28:53.120530 #7511] FATAL -- :  
  37. F, [2020-03-22T17:28:53.120647 #7511] FATAL -- : ActionController::RoutingError (No route matches [GET] "/images/favicon-16x16.png"):
  38. F, [2020-03-22T17:28:53.120703 #7511] FATAL -- :  
  39. F, [2020-03-22T17:28:53.120757 #7511] FATAL -- : actionpack (5.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
  40. actionpack (5.2.4) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
  41. railties (5.2.4) lib/rails/rack/logger.rb:38:in `call_app'
  42. railties (5.2.4) lib/rails/rack/logger.rb:28:in `call'
  43. actionpack (5.2.4) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
  44. actionpack (5.2.4) lib/action_dispatch/middleware/request_id.rb:27:in `call'
  45. rack (2.0.8) lib/rack/method_override.rb:22:in `call'
  46. rack (2.0.8) lib/rack/runtime.rb:22:in `call'
  47. actionpack (5.2.4) lib/action_dispatch/middleware/executor.rb:14:in `call'
  48. actionpack (5.2.4) lib/action_dispatch/middleware/static.rb:127:in `call'
  49. rack (2.0.8) lib/rack/sendfile.rb:111:in `call'
  50. railties (5.2.4) lib/rails/engine.rb:524:in `call'
  51. puma (4.3.1) lib/puma/configuration.rb:228:in `call'
  52. puma (4.3.1) lib/puma/server.rb:681:in `handle_request'
  53. puma (4.3.1) lib/puma/server.rb:472:in `process_client'
  54. puma (4.3.1) lib/puma/server.rb:328:in `block in run'
  55. puma (4.3.1) lib/puma/thread_pool.rb:134:in `block in spawn_thread'
  56. I, [2020-03-22T17:28:54.003335 #7511]  INFO -- : Started GET "/" for 127.0.0.1 at 2020-03-22 17:28:54 +0530
  57. I, [2020-03-22T17:28:54.008079 #7511]  INFO -- : Processing by HomeController#v2 as */*
  58. I, [2020-03-22T17:28:54.053337 #7511]  INFO -- : Completed 200 OK in 44ms (Views: 26.8ms | ActiveRecord: 0.0ms | Solr: 0.0ms)
  59.  
  60.  
  61. I, [2020-03-22T17:29:06.788198 #7511]  INFO -- : Started POST "/api/v2/tokens" for 127.0.0.1 at 2020-03-22 17:29:06 +0530
  62. I, [2020-03-22T17:29:06.940042 #7511]  INFO -- : Processing by Api::V2::TokensController#create as JSON
  63. I, [2020-03-22T17:29:06.940306 #7511]  INFO -- :   Parameters: {"user"=>{"user_name"=>"primero", "password"=>"[FILTERED]"}, "token"=>{"user"=>{"user_name"=>"primero", "password"=>"[FILTERED]"}}}
  64. D, [2020-03-22T17:29:07.158723 #7511] DEBUG -- :   User Load (47.0ms)  SELECT  "users".* FROM "users" WHERE "users"."user_name" = $1 ORDER BY "users"."id" ASC LIMIT $2  [["user_name", "primero"], ["LIMIT", 1]]
  65. I, [2020-03-22T17:29:07.392157 #7511]  INFO -- : Completed 500 Internal Server Error in 452ms (ActiveRecord: 160.1ms)
  66.  
  67.  
  68. F, [2020-03-22T17:29:07.392734 #7511] FATAL -- :  
  69. F, [2020-03-22T17:29:07.392797 #7511] FATAL -- : NoMethodError (undefined method `bytesize' for nil:NilClass):
  70. F, [2020-03-22T17:29:07.392851 #7511] FATAL -- :  
  71. F, [2020-03-22T17:29:07.392900 #7511] FATAL -- : app/middleware/jwt_token_setter.rb:15:in `call'
  72. I, [2020-03-22T17:29:23.075972 #7511]  INFO -- : Started POST "/api/v2/tokens" for 127.0.0.1 at 2020-03-22 17:29:23 +0530
  73. I, [2020-03-22T17:29:23.077319 #7511]  INFO -- : Processing by Api::V2::TokensController#create as JSON
  74. I, [2020-03-22T17:29:23.077970 #7511]  INFO -- :   Parameters: {"user"=>{"user_name"=>"primero", "password"=>"[FILTERED]"}, "token"=>{"user"=>{"user_name"=>"primero", "password"=>"[FILTERED]"}}}
  75. D, [2020-03-22T17:29:23.080619 #7511] DEBUG -- :   User Load (0.6ms)  SELECT  "users".* FROM "users" WHERE "users"."user_name" = $1 ORDER BY "users"."id" ASC LIMIT $2  [["user_name", "primero"], ["LIMIT", 1]]
  76. I, [2020-03-22T17:29:23.247691 #7511]  INFO -- : Completed 500 Internal Server Error in 169ms (ActiveRecord: 0.6ms)
  77.  
  78.  
  79. F, [2020-03-22T17:29:23.248637 #7511] FATAL -- :  
  80. F, [2020-03-22T17:29:23.248749 #7511] FATAL -- : NoMethodError (undefined method `bytesize' for nil:NilClass):
  81. F, [2020-03-22T17:29:23.248820 #7511] FATAL -- :  
  82. F, [2020-03-22T17:29:23.248884 #7511] FATAL -- : app/middleware/jwt_token_setter.rb:15:in `call'
Add Comment
Please, Sign In to add comment