diff options
author | malosek <malosek@fastmq.com> | 2009-09-16 14:55:11 +0200 |
---|---|---|
committer | malosek <malosek@fastmq.com> | 2009-09-16 14:55:11 +0200 |
commit | 3b2c3cae095abf9b61cd72cf19f053071a8c614a (patch) | |
tree | 4d6396c9ec15cb589b6bba9211eed9377be1b468 /perf | |
parent | 3534732c0614a764731fbea2431247068fa63330 (diff) |
setsockopt cleanup in rbzmq
Diffstat (limited to 'perf')
-rw-r--r-- | perf/ruby/local_thr.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perf/ruby/local_thr.rb b/perf/ruby/local_thr.rb index db14cf2..b916f2d 100644 --- a/perf/ruby/local_thr.rb +++ b/perf/ruby/local_thr.rb @@ -29,7 +29,7 @@ message_count = ARGV[2].to_i ctx = Context.new(1, 1) s = Socket.new(ctx, SUB); -s.setsockopt (SUBSCRIBE, "*"); +s.setsockopt(SUBSCRIBE, "*"); # Add your socket options here. # For example ZMQ_RATE, ZMQ_RECOVERY_IVL and ZMQ_MCAST_LOOP for PGM. |