Skip to content

Commit

Permalink
bug #37127 [Messenger/AmazonSqsBridge] Fixed left-over debug statemen…
Browse files Browse the repository at this point in the history
…t (sstok)

This PR was merged into the 5.1 branch.

Discussion
----------

[Messenger/AmazonSqsBridge] Fixed left-over debug statement

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | yes
| New feature?  |
| Deprecations? | no
| Tickets       | Related to #37038
| License       | MIT
| Doc PR        |

I noticed whats properly a left-over debugging statement that blocks the code from further execution. /cc @jderusse can you check this (thanks).

Commits
-------

8b827e4 Fixed left-over debug statement
  • Loading branch information
nicolas-grekas committed Jun 7, 2020
2 parents 2ea0a14 + 8b827e4 commit a31d761
Showing 1 changed file with 0 additions and 2 deletions.
Expand Up @@ -311,8 +311,6 @@ public function send(string $body, array $headers, int $delay = 0, ?string $mess
]);
}

dd($parameters);

if (self::isFifoQueue($this->configuration['queue_name'])) {
$parameters['MessageGroupId'] = null !== $messageGroupId ? $messageGroupId : __METHOD__;
$parameters['MessageDeduplicationId'] = null !== $messageDeduplicationId ? $messageDeduplicationId : sha1(json_encode(['body' => $body, 'headers' => $headers]));
Expand Down

0 comments on commit a31d761

Please sign in to comment.