Skip to content

Commit

Permalink
Removing debug echo statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Devenport authored and Eric Devenport committed May 14, 2024
1 parent 2fa4c9f commit a6561cd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/RetrySender.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ private function trySend(Request $request, $attempt)
if (($ex instanceof MustRetryException || $ex instanceof InternalServerErrorException || $ex instanceof ServiceUnavailableException || $ex instanceof GatewayTimeoutException || $ex instanceof RequestTimeoutException || $ex instanceof BadGatewayException) && $attempt < $this->maxRetries) {
$this->backoff(self::MAX_BACKOFF_DURATION);
} else {
echo $ex->getCode() . "\n";
throw $ex;
}
}
Expand Down
1 change: 0 additions & 1 deletion src/US_Reverse_Geo/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ public function sendLookup(Lookup $lookup) {
$request = $this->buildRequest($lookup);
$response = $this->sender->send($request);

echo($response->getPayload());
$lookupResponse = new Response($this->serializer->deserialize($response->getPayload()));

$lookup->setResponse($lookupResponse);
Expand Down

0 comments on commit a6561cd

Please sign in to comment.