|
@@ -404,8 +404,9 @@ def main
|
|
# #run: Note that this will block current thread.
|
|
# #run: Note that this will block current thread.
|
|
EventMachine.run do
|
|
EventMachine.run do
|
|
|
|
|
|
- EventMachine.start_server("0.0.0.0", 7337, InterconnectionPointProtocolHandler)
|
|
|
|
-
|
|
|
|
|
|
+ f = Fiber.new do
|
|
|
|
+ EventMachine.start_server("0.0.0.0", 7337, InterconnectionPointProtocolHandler)
|
|
|
|
+ end.resume
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
|