lib/dcell.rb in dcell-0.13.0.pre vs lib/dcell.rb in dcell-0.13.0
- old
+ new
@@ -25,19 +25,19 @@
# Distributed Celluloid
module DCell
class NotConfiguredError < RuntimeError; end # Not configured yet
- DEFAULT_PORT = 7890 # Default DCell port
+ DEFAULT_PORT = 7777 # Default DCell port
@config_lock = Mutex.new
class << self
attr_reader :me, :registry
# Configure DCell with the following options:
#
# * id: to identify the local node, defaults to hostname
- # * addr: 0MQ address of the local node (e.g. tcp://4.3.2.1:7890)
+ # * addr: 0MQ address of the local node (e.g. tcp://4.3.2.1:7777)
# *
def setup(options = {})
# Stringify keys :/
options = options.inject({}) { |h,(k,v)| h[k.to_s] = v; h }