While trying to run my config.ru, I’m getting an odd error I can’t seem to debug called a ‘No acceptor’ error.
Full error message:
eventmachine.rb:572:in `start_tcp_server': no acceptor (RuntimeError)
Does anyone know what this error means? Thanks.
As @Fivell says, I think the problem is that you have a previous instance of
thinstill running. Rather than start on another port though, I would recommend killing the previous instance. Something like this should do the job (I recreated the problem here, so this is real output on my end):Depending on how you started your app, you may need to
grepfor something different (say if you usedshotgunorrackup).