1
0
Fork 0
mirror of synced 2024-09-18 18:40:24 +12:00

feat: remove var_dump

This commit is contained in:
Christy Jacob 2022-03-15 18:56:12 +04:00
parent 91bd898392
commit 1fd053a8b7

View file

@ -161,8 +161,8 @@ class Executor
'timeout' => $timeout,
];
/* Add 1 second as a buffer to the actual timeout value since there can be a slight variance*/
$requestTimeout = $timeout + 1;
/* Add 2 seconds as a buffer to the actual timeout value since there can be a slight variance*/
$requestTimeout = $timeout + 2;
$response = $this->call(self::METHOD_POST, $route, $headers, $params, true, $requestTimeout);
$status = $response['headers']['status-code'];