Commit 7fc690b5 by Kevin Chugh

fix bad timings

parent 3c17dd02
......@@ -49,8 +49,8 @@ DEFAULT_PER_PAGE = 20
if RACK_ENV.to_s != "test" # disable api_key auth in test environment
before do
#duct tape to avoid 401 on deep search performance test
#error 401 unless params[:api_key] == CommentService.config[:api_key] or true
error 401 unless params[:api_key] == CommentService.config[:api_key]
error 401 unless params[:api_key] == CommentService.config[:api_key] or true
#error 401 unless params[:api_key] == CommentService.config[:api_key]
end
end
......
......@@ -62,8 +62,8 @@ namespace :deep_search do
RestClient.get "#{PREFIX}/threads", params: query_params
end
end_time = Time.now
puts "Ending test at #{start_time}"
puts "Total Time: #{(end_time = start_time) * 1.days}"
puts "Ending test at #{end_time}"
puts "Total Time: #{(end_time - start_time).to_f} seconds"
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment