Skip to content
Snippets Groups Projects
Verified Commit 2f42fc3a authored by Alexander Olofsson's avatar Alexander Olofsson
Browse files

Fix more rubocop complaints

parent f4adc10d
No related branches found
No related tags found
No related merge requests found
...@@ -273,7 +273,7 @@ module MatrixSdk ...@@ -273,7 +273,7 @@ module MatrixSdk
loop do loop do
raise MatrixConnectionError, "Server still too busy to handle request after #{failures} attempts, try again later" if failures >= 10 raise MatrixConnectionError, "Server still too busy to handle request after #{failures} attempts, try again later" if failures >= 10
req_id = ('A'..'Z').to_a.shuffle[0,4].join req_id = ('A'..'Z').to_a.sample(4).join
print_http(request, id: req_id) print_http(request, id: req_id)
begin begin
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment