Advertisement
Guest User

Untitled

a guest
Mar 15th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 KB | None | 0 0
  1. default: &default
  2. adapter: postgresql
  3. pool: 5
  4. timeout: 5000
  5. host: ""
  6.  
  7. development:
  8. adapter: postgresql
  9. encoding: unicode
  10. database: demo_test_development
  11. pool: 5
  12. username: Brandon
  13. password: "password"
  14. timeout: 5000
  15.  
  16. test:
  17. adapter: postgresql
  18. encoding: unicode
  19. database: demo_test_test
  20. pool: 5
  21. username: Brandon
  22. password: "password"
  23. timeout: 5000
  24.  
  25. app[web.1]: I, [2017-03-16T00:08:56.626013 #4] INFO -- : [ce14b2b6-523e-446b-b80e-e6cab9de1234] Completed 500 Internal Server Error in 134ms (ActiveRecord: 30.9ms)
  26. app[web.1]: F, [2017-03-16T00:08:56.627256 #4] FATAL -- : [ce14b2b6-523e-446b-b80e-e6cab9de1234]
  27. app[web.1]: F, [2017-03-16T00:08:56.627343 #4] FATAL -- : [ce14b2b6-523e-446b-b80e-e6cab9de1234] ActiveRecord::StatementInvalid (PG::UndefinedTable: ERROR: relation "users" does not exist
  28. app[web.1]: LINE 8: WHERE a.attrelid = '"users"'::regclass
  29. app[web.1]: ^
  30. app[web.1]: : SELECT a.attname, format_type(a.atttypid, a.atttypmod),
  31. app[web.1]: pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod,
  32. app[web.1]: (SELECT c.collname FROM pg_collation c, pg_type t
  33. app[web.1]: WHERE c.oid = a.attcollation AND t.oid = a.atttypid AND a.attcollation <> t.typcollation),
  34. app[web.1]: col_description(a.attrelid, a.attnum) AS comment
  35. 2017-03-16T00:08:56.632358+00:00 heroku[router]: at=info method=POST path="/login_user" yno=web.1 connect=72ms service=243ms status=500 bytes=1669 protocol=https
  36. app[web.1]: FROM pg_attribute a LEFT JOIN pg_attrdef d
  37. app[web.1]: ON a.attrelid = d.adrelid AND a.attnum = d.adnum
  38. app[web.1]: WHERE a.attrelid = '"users"'::regclass
  39. app[web.1]: AND a.attnum > 0 AND NOT a.attisdropped
  40. app[web.1]: ORDER BY a.attnum
  41. app[web.1]: ):
  42. app[web.1]: F, [2017-03-16T00:08:56.627413 #4] FATAL -- : [ce14b2b6-523e-446b-b80e-e6cab9de1234]
  43. app[web.1]: F, [2017-03-16T00:08:56.627489 #4] FATAL -- : [ce14b2b6-523e-446b-b80e-e6cab9de1234] app/models/user.rb:33:in
  44.  
  45. heroku[router]: at=info method=GET path="/accomodations" host={deleted on purpose} request_id=cb06d7d3-9236-4eb0-b5a7-c05c7db538d8 fwd="73.169.192.70" dyno=web.1 connect=1ms service=22ms status=406 bytes=182 protocol=https
  46. app[web.1]: I, [2017-03-16T00:24:16.409234 #4] INFO -- : [cb06d7d3-9236-4eb0-b5a7-c05c7db538d8] Started GET "/accomodations" for 73.169.192.70 at 2017-03-16 00:24:16 +0000
  47. app[web.1]: I, [2017-03-16T00:24:16.415902 #4] INFO -- : [cb06d7d3-9236-4eb0-b5a7-c05c7db538d8] Processing by HomesController#accomodations as HTML
  48. app[web.1]: I, [2017-03-16T00:24:16.425975 #4] INFO -- : [cb06d7d3-9236-4eb0-b5a7-c05c7db538d8] Completed 406 Not Acceptable in 8ms (ActiveRecord: 0.0ms)
  49. app[web.1]: F, [2017-03-16T00:24:16.427668 #4] FATAL -- : [cb06d7d3-9236-4eb0-b5a7-c05c7db538d8]
  50. 2017-03-16T00:24:16.427810+00:00 app[web.1]: F, [2017-03-16T00:24:16.427746 #4] FATAL -- : [cb06d7d3-9236-4eb0-b5a7-c05c7db538d8] ActionController::UnknownFormat (HomesController#accomodations is missing a template for this request format and variant.
  51. app[web.1]:
  52. app[web.1]: request.formats: ["text/html"]
  53. app[web.1]: request.variant: []):
  54. app[web.1]: F, [2017-03-16T00:24:16.427823 #4] FATAL -- : [cb06d7d3-9236-4eb0-b5a7-c05c7db538d8]
  55. app[web.1]: F, [2017-03-16T00:24:16.427921 #4] FATAL -- : [cb06d7d3-9236-4eb0-b5a7-c05c7db538d8] vendor/bundle/ruby/2.2.0/gems/actionpack-5.0.2/lib/action_controller/metal/implicit_render.rb:43:in `default_render'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement