Last active
December 16, 2015 18:20
-
-
Save digitalextremist/5477245 to your computer and use it in GitHub Desktop.
Aiming a browser at the websocket address ws://host/!sync?when=open is Reel::RackWorker genocide.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Reel::RackWorker crashed! | |
Celluloid::DeadActorError: attempted to call a dead actor | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/proxies/sync_proxy.rb:25:in `method_missing' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/legacy.rb:14:in `call (method_missing)' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:1417:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:1499:in `synchronize' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:1417:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/builder.rb:138:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/urlmap.rb:65:in `call' | |
kernel/bootstrap/array.rb:68:in `each' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/urlmap.rb:50:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/reloader.rb:44:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/deflater.rb:25:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/content_length.rb:14:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:225:in `context' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:220:in `call' | |
/mu/penultimatix/reel/lib/reel/rack_worker.rb:74:in `handle_request' | |
/mu/penultimatix/reel/lib/reel/rack_worker.rb:65:in `handle' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:25:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:67:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/actor.rb:322:in `handle_message' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks.rb:41:in `initialize' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks/task_fiber.rb:9:in `create' | |
kernel/bootstrap/proc.rb:22:in `call' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rack' | |
require 'sinatra' | |
#de Sinatra endpoint: | |
class Mu | |
class Sync < Ma | |
include Celluloid #de Here is the actual culprit | |
get "/" do | |
case params['when'] | |
when 'open' | |
nil << 1 | |
#de ... haven't even touched the socket yet. Already dead, just flat murdered. | |
when 'abort' | |
#de ... | |
when 'close' | |
#de ... | |
end | |
end | |
end | |
end | |
#de Sinatra::Base abstraction layer: | |
class Mu | |
class Ma < Sinatra::Base | |
def initialize; super end | |
before do | |
#de ... | |
end | |
after do | |
#de ... | |
end | |
end | |
end | |
#de Rackup routing: | |
map "/!sync" do; run Mu::Sync end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NoMethodError - undefined method `<<' on nil:NilClass.: | |
kernel/delta/kernel.rb:81:in `<< (method_missing)' | |
/mu/zero/mu/ma/sync.rb:9:in `Sync' | |
kernel/common/method.rb:56:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:1293:in `compile!' | |
kernel/bootstrap/proc.rb:22:in `[] (call)' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:860:in `route!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:876:in `route_eval' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:860:in `route!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:897:in `process_route' | |
kernel/bootstrap/proc.rb:22:in `call' | |
kernel/common/throw_catch19.rb:8:in `catch' | |
kernel/common/throw_catch.rb:10:in `register' | |
kernel/common/throw_catch19.rb:7:in `catch' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:895:in `process_route' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:859:in `route!' | |
kernel/bootstrap/array.rb:68:in `each' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:858:in `route!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:963:in `dispatch!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
kernel/bootstrap/proc.rb:22:in `call' | |
kernel/common/throw_catch19.rb:8:in `catch' | |
kernel/common/throw_catch.rb:10:in `register' | |
kernel/common/throw_catch19.rb:7:in `catch' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:960:in `dispatch!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:794:in `call!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
kernel/bootstrap/proc.rb:22:in `call' | |
kernel/common/throw_catch19.rb:8:in `catch' | |
kernel/common/throw_catch.rb:10:in `register' | |
kernel/common/throw_catch19.rb:7:in `catch' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:794:in `call!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:780:in `call' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:25:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:67:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/actor.rb:320:in `handle_message' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks.rb:41:in `initialize' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks/task_fiber.rb:9:in `create' | |
kernel/bootstrap/proc.rb:22:in `call' | |
^01E < ZERO: 1367162955.2745 > http://decentrality.com.zero/!sync?when=open&transport=ws&heartbeat=false&lastEventId=0&id=46784186-0632-4a70-9f99-75407559719c&_=1367162955079 | |
Mu::Sync crashed! | |
NoMethodError: undefined method `<<' on nil:NilClass. | |
kernel/delta/kernel.rb:81:in `<< (method_missing)' | |
/mu/zero/mu/ma/sync.rb:9:in `Sync' | |
kernel/common/method.rb:56:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:1293:in `compile!' | |
kernel/bootstrap/proc.rb:22:in `[] (call)' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:860:in `route!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:876:in `route_eval' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:860:in `route!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:897:in `process_route' | |
kernel/bootstrap/proc.rb:22:in `call' | |
kernel/common/throw_catch19.rb:8:in `catch' | |
kernel/common/throw_catch.rb:10:in `register' | |
kernel/common/throw_catch19.rb:7:in `catch' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:895:in `process_route' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:859:in `route!' | |
kernel/bootstrap/array.rb:68:in `each' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:858:in `route!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:963:in `dispatch!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
kernel/bootstrap/proc.rb:22:in `call' | |
kernel/common/throw_catch19.rb:8:in `catch' | |
kernel/common/throw_catch.rb:10:in `register' | |
kernel/common/throw_catch19.rb:7:in `catch' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:960:in `dispatch!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:794:in `call!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
kernel/bootstrap/proc.rb:22:in `call' | |
kernel/common/throw_catch19.rb:8:in `catch' | |
kernel/common/throw_catch.rb:10:in `register' | |
kernel/common/throw_catch19.rb:7:in `catch' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:794:in `call!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:780:in `call' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:25:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:67:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/actor.rb:320:in `handle_message' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks.rb:41:in `initialize' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks/task_fiber.rb:9:in `create' | |
kernel/bootstrap/proc.rb:22:in `call' | |
(celluloid):0:in `remote procedure call' | |
Reel::RackWorker crashed! | |
NoMethodError: undefined method `<<' on nil:NilClass. | |
kernel/delta/kernel.rb:81:in `<< (method_missing)' | |
/mu/zero/mu/ma/sync.rb:9:in `Sync' | |
kernel/common/method.rb:56:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:1293:in `compile!' | |
kernel/bootstrap/proc.rb:22:in `[] (call)' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:860:in `route!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:876:in `route_eval' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:860:in `route!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:897:in `process_route' | |
kernel/bootstrap/proc.rb:22:in `call' | |
kernel/common/throw_catch19.rb:8:in `catch' | |
kernel/common/throw_catch.rb:10:in `register' | |
kernel/common/throw_catch19.rb:7:in `catch' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:895:in `process_route' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:859:in `route!' | |
kernel/bootstrap/array.rb:68:in `each' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:858:in `route!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:963:in `dispatch!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
kernel/bootstrap/proc.rb:22:in `call' | |
kernel/common/throw_catch19.rb:8:in `catch' | |
kernel/common/throw_catch.rb:10:in `register' | |
kernel/common/throw_catch19.rb:7:in `catch' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:960:in `dispatch!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:794:in `call!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
kernel/bootstrap/proc.rb:22:in `call' | |
kernel/common/throw_catch19.rb:8:in `catch' | |
kernel/common/throw_catch.rb:10:in `register' | |
kernel/common/throw_catch19.rb:7:in `catch' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:794:in `call!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:780:in `call' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:25:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:67:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/actor.rb:320:in `handle_message' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks.rb:41:in `initialize' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks/task_fiber.rb:9:in `create' | |
kernel/bootstrap/proc.rb:22:in `call' | |
(celluloid):0:in `remote procedure call' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:95:in `value' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/proxies/sync_proxy.rb:20:in `method_missing' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/legacy.rb:0:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:1417:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:0:in `synchronize' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:1417:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/builder.rb:138:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/urlmap.rb:65:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/urlmap.rb:50:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/reloader.rb:44:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/deflater.rb:25:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/content_length.rb:14:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:225:in `context' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:220:in `call' | |
/mu/penultimatix/reel/lib/reel/rack_worker.rb:74:in `handle_request' | |
/mu/penultimatix/reel/lib/reel/rack_worker.rb:65:in `handle' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:25:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:67:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/actor.rb:322:in `handle_message' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks.rb:42:in `initialize' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks/task_fiber.rb:9:in `create' | |
Reel::Server crashed! | |
NoMethodError: undefined method `<<' on nil:NilClass. | |
kernel/delta/kernel.rb:81:in `<< (method_missing)' | |
/mu/zero/mu/ma/sync.rb:9:in `Sync' | |
kernel/common/method.rb:56:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:1293:in `compile!' | |
kernel/bootstrap/proc.rb:22:in `[] (call)' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:860:in `route!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:876:in `route_eval' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:860:in `route!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:897:in `process_route' | |
kernel/bootstrap/proc.rb:22:in `call' | |
kernel/common/throw_catch19.rb:8:in `catch' | |
kernel/common/throw_catch.rb:10:in `register' | |
kernel/common/throw_catch19.rb:7:in `catch' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:895:in `process_route' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:859:in `route!' | |
kernel/bootstrap/array.rb:68:in `each' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:858:in `route!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:963:in `dispatch!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
kernel/bootstrap/proc.rb:22:in `call' | |
kernel/common/throw_catch19.rb:8:in `catch' | |
kernel/common/throw_catch.rb:10:in `register' | |
kernel/common/throw_catch19.rb:7:in `catch' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:960:in `dispatch!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:794:in `call!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
kernel/bootstrap/proc.rb:22:in `call' | |
kernel/common/throw_catch19.rb:8:in `catch' | |
kernel/common/throw_catch.rb:10:in `register' | |
kernel/common/throw_catch19.rb:7:in `catch' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:946:in `invoke' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:794:in `call!' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:780:in `call' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:25:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:67:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/actor.rb:320:in `handle_message' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks.rb:41:in `initialize' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks/task_fiber.rb:9:in `create' | |
kernel/bootstrap/proc.rb:22:in `call' | |
(celluloid):0:in `remote procedure call' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:95:in `value' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/proxies/sync_proxy.rb:20:in `method_missing' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/legacy.rb:0:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:1417:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:0:in `synchronize' | |
/usr/local/rvm/gems/rbx-head/gems/sinatra-1.3.6/lib/sinatra/base.rb:1417:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/builder.rb:138:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/urlmap.rb:65:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/urlmap.rb:50:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/reloader.rb:44:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/deflater.rb:25:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/content_length.rb:14:in `call' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:225:in `context' | |
/usr/local/rvm/gems/rbx-head/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:220:in `call' | |
/mu/penultimatix/reel/lib/reel/rack_worker.rb:74:in `handle_request' | |
/mu/penultimatix/reel/lib/reel/rack_worker.rb:65:in `handle' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:25:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:67:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/actor.rb:322:in `handle_message' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks.rb:42:in `initialize' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks/task_fiber.rb:9:in `create' | |
(celluloid):0:in `remote procedure call' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:95:in `value' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/proxies/sync_proxy.rb:20:in `method_missing' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/legacy.rb:0:in `method_missing' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/proxies/actor_proxy.rb:25:in `_send_' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/pool_manager.rb:41:in `_send_' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/pool_manager.rb:122:in `handle' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:25:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:67:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/actor.rb:320:in `handle_message' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks.rb:42:in `initialize' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks/task_fiber.rb:9:in `create' | |
(celluloid):0:in `remote procedure call' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:95:in `value' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/proxies/sync_proxy.rb:28:in `method_missing' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/legacy.rb:0:in `handle' | |
/mu/penultimatix/reel/lib/rack/handler/reel.rb:53:in `start' | |
/mu/penultimatix/reel/lib/reel/server.rb:37:in `handle_connection' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:25:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/calls.rb:125:in `dispatch' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/actor.rb:322:in `handle_message' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks.rb:42:in `initialize' | |
/usr/local/rvm/gems/rbx-head/bundler/gems/celluloid-594e63068e98/lib/celluloid/tasks/task_fiber.rb:9:in `create' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment