From bf0c221ac030d0b924577437529534f8fc71ec4b Mon Sep 17 00:00:00 2001 From: "Robert G. Jakabosky" Date: Wed, 15 May 2013 18:17:03 -0700 Subject: [PATCH] Fix typo. --- perf/thread_thr.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perf/thread_thr.lua b/perf/thread_thr.lua index e912155..a7a5d11 100644 --- a/perf/thread_thr.lua +++ b/perf/thread_thr.lua @@ -24,8 +24,8 @@ end local message_size = tonumber(arg[1] or 1) local message_count = tonumber(arg[2] or 100000) -local bind_to = arg[3] or 'inproc://thread_lat_test' -local connect_to = arg[4] or 'inproc://thread_lat_test' +local bind_to = arg[3] or 'inproc://thread_thr_test' +local connect_to = arg[4] or 'inproc://thread_thr_test' local zmq = require"zmq" local zthreads = require"zmq.threads"