Skip to content

Commit

Permalink
Disable request retries as sometimes kraken returns an error but the …
Browse files Browse the repository at this point in the history
…order placeùment is done anyway...
  • Loading branch information
dve committed Aug 30, 2017
1 parent a8156fd commit 11e044f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Model/Request/RequestModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ abstract protected function buildRequest();
protected function callApi($apiMethodAccessType = ApiMethodAccessType::PUBLIC_METHOD)
{
$apiResults = [];
$nbRetries = 5;
$nbRetries = 1;

for($retriesCounter = 0; $retriesCounter < $nbRetries; $retriesCounter++) {
try {
Expand Down

0 comments on commit 11e044f

Please sign in to comment.