Skip to content

Commit

Permalink
wamp
Browse files Browse the repository at this point in the history
  • Loading branch information
ASKozienko committed Oct 22, 2018
1 parent 92d9698 commit 7c610c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/wamp/WampConsumer.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public function receiveNoWait(): ?Message
*/
public function acknowledge(Message $message): void
{
// do nothing. redis transport always works in auto ack mode
// do nothing. wamp transport always works in auto ack mode
}

/**
Expand All @@ -126,7 +126,7 @@ public function reject(Message $message, bool $requeue = false): void
{
InvalidMessageException::assertMessageInstanceOf($message, WampMessage::class);

// do nothing on reject. redis transport always works in auto ack mode
// do nothing on reject. wamp transport always works in auto ack mode

if ($requeue) {
$this->context->createProducer()->send($this->queue, $message);
Expand Down

0 comments on commit 7c610c2

Please sign in to comment.