Closed mistergibson closed 9 years ago
RVM? Version?
I am running the repro now, but there must be a client side also that causes the crash?
This happens with mri
and rbx
but not jruby
ruby 1.9.3p484 (2013-11-22 revision 43786) [x86_64-linux]
This is actually your error @mistergibson... the server is being instantiated twice on an IO level.
This works:
Server.run
Double check the documentation and notice, the server is not instantiated first, then run, it's just run, and it instantiates itself. So by instantiating it and then running it, you actually double-instantiate it.
Thanks for pointing that out - I'll check it.
Attempting this: