Skip to content

Commit

Permalink
replaced constant with int value
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshd committed Jan 8, 2015
1 parent acf1f4d commit c4efbaf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/remote/HttpCommandExecutor.php
Expand Up @@ -161,7 +161,11 @@ public function setConnectionTimeout($timeout_in_ms) {
* @return HttpCommandExecutor
*/
public function setRequestTimeout($timeout_in_ms) {
curl_setopt($this->curl, CURLOPT_TIMEOUT_MS, $timeout_in_ms);
curl_setopt(
$this->curl,
/*CURLOPT_TIMEOUT_MS*/ 155,
$timeout_in_ms
);
return $this;
}

Expand Down

0 comments on commit c4efbaf

Please sign in to comment.