Skip to content

Commit 7c610c2

Browse files
committed
wamp
1 parent 92d9698 commit 7c610c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/wamp/WampConsumer.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function receiveNoWait(): ?Message
114114
*/
115115
public function acknowledge(Message $message): void
116116
{
117-
// do nothing. redis transport always works in auto ack mode
117+
// do nothing. wamp transport always works in auto ack mode
118118
}
119119

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

129-
// do nothing on reject. redis transport always works in auto ack mode
129+
// do nothing on reject. wamp transport always works in auto ack mode
130130

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

0 commit comments

Comments
 (0)