More accurate ack mode description in the UI

I ran into this when working on metrics. This option sets `no_ack = true` which means an automatic ack. However, the old description, `Ack message requeue false`, suggests to me that there is a manual ack. I spent a lot of time trying to find a bug in the metrics code that counted this as an auto-acked message, when in fact it was an auto-acked message. :)
This commit is contained in:
Michal Kuratczyk 2021-04-29 09:07:44 +02:00 committed by GitHub
parent 80d35fdaf3
commit 95ef9fb693
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@
<td>
<select name="ackmode">
<option value="ack_requeue_true" selected>Nack message requeue true</option>
<option value="ack_requeue_false">Ack message requeue false</option>
<option value="ack_requeue_false">Auto ack message requeue false</option>
<option value="reject_requeue_true">Reject requeue true</option>
<option value="reject_requeue_false">Reject requeue false</option>
</select>