Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. Puma starting in single mode...
  2. 2017-02-27T15:08:03.908788+00:00 app[web.1]: * Version 3.7.0 (ruby 2.3.1-p112), codename: Snowy Sagebrush
  3. 2017-02-27T15:08:03.908789+00:00 app[web.1]: * Min threads: 5, max threads: 5
  4. 2017-02-27T15:08:03.908790+00:00 app[web.1]: * Environment: production
  5. 2017-02-27T15:08:05.942041+00:00 app[web.1]: ! Unable to load application: NameError: uninitialized constant Api::V1::AController
  6. 2017-02-27T15:08:05.942133+00:00 app[web.1]: bundler: failed to load command: puma (/app/vendor/bundle/ruby/2.3.0/bin/puma)
  7. 2017-02-27T15:08:05.942266+00:00 app[web.1]: NameError: uninitialized constant Api::V1::AController
  8.  
  9. bundle exec puma -C config/puma.rb
  10.  
  11. workers Integer(ENV['WEB_CONCURRENCY'] || 2)
  12. threads_count = Integer(ENV['RAILS_MAX_THREADS'] || 5)
  13. threads threads_count, threads_count
  14.  
  15. preload_app!
  16.  
  17. rackup DefaultRackup
  18. port ENV['PORT'] || 3000
  19. environment ENV['RACK_ENV'] || 'development'
  20.  
  21. on_worker_boot do
  22. ActiveRecord::Base.establish_connection
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement