Skip to content

Commit f7e8cda

Browse files
author
Kis Attila Balint
committed
fix-tests
1 parent 54e4921 commit f7e8cda

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

library/Requests.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,7 @@ public static function request_pool($requests, $options = array(), $pool_size =
426426
}
427427
}
428428
}
429+
429430
unset($request);
430431

431432
if (!empty($options['transport'])) {
@@ -437,10 +438,10 @@ public static function request_pool($requests, $options = array(), $pool_size =
437438
}
438439
else {
439440
$transport = self::get_transport();
440-
}
441441

442-
if (get_class($transport) !== 'Requests_Transport_cURL') {
443-
return array();
442+
if (get_class($transport) !== 'Requests_Transport_cURL') {
443+
return array();
444+
}
444445
}
445446

446447
$responses = $transport->request_pool($requests, $options, $pool_size);

0 commit comments

Comments
 (0)