gottfrois / dashing-rails

The exceptionally handsome dashboard framework for Rails.
MIT License
1.45k stars 149 forks source link

ConnectionPool::PoolShuttingDownError #106

Open KoderMAL opened 6 years ago

KoderMAL commented 6 years ago

Hello,

I try to run dashing-rails on rails 2.1.4 (i've tried on 2.4.1 as well). After following all steps I go to localhost:3000/dashing/dashboards and it loads forever. After browser exit or reload I get this error:

ConnectionPool::PoolShuttingDownError

`connection_pool (2.2.2) lib/connection_pool/timed_stack.rb, line 80

   75       timeout = options.fetch :timeout, timeout
   76
   77       deadline = ConnectionPool.monotonic_time + timeout
   78       @mutex.synchronize do
   79         loop do
>  80           raise ConnectionPool::PoolShuttingDownError if @shutdown_block
   81           return fetch_connection(options) if connection_stored?(options)
   82
   83           connection = try_create(options)
   84           return connection if connection
   85

App backtrace

Full backtrace

Has someone been through this issue? I can't manage to make it work even on a brand new rails project