summaryrefslogtreecommitdiff
path: root/service/test/reactor/concurrent_logins.rb
diff options
context:
space:
mode:
Diffstat (limited to 'service/test/reactor/concurrent_logins.rb')
-rw-r--r--service/test/reactor/concurrent_logins.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/service/test/reactor/concurrent_logins.rb b/service/test/reactor/concurrent_logins.rb
index a10d0394..0af2c5b7 100644
--- a/service/test/reactor/concurrent_logins.rb
+++ b/service/test/reactor/concurrent_logins.rb
@@ -24,7 +24,9 @@ end
ts = (1...(1+COUNT)).map do |ix|
t = Thread.new do
+ time = Time.now()
`#{curl_command(ix)}`
+ puts "Request time: #{Time.now() - time}"
end
sleep 1
t