@@ -1288,8 +1288,8 @@ to retry them:
1288
1288
# see the 10 first messages
1289
1289
$ php bin/console messenger:failed:show --max=10
1290
1290
1291
- # see only MyClass messages
1292
- $ php bin/console messenger:failed:show --class-filter='MyClass '
1291
+ # see only App\Message\MyMessage messages
1292
+ $ php bin/console messenger:failed:show --class-filter='App\Message\MyMessage '
1293
1293
1294
1294
# see the number of messages by message class
1295
1295
$ php bin/console messenger:failed:show --stats
@@ -1312,6 +1312,9 @@ to retry them:
1312
1312
# remove all messages in the failure transport
1313
1313
$ php bin/console messenger:failed:remove --all
1314
1314
1315
+ # remove only App\Message\MyMessage messages
1316
+ $ php bin/console messenger:failed:remove --class-filter='App\Message\MyMessage'
1317
+
1315
1318
If the message fails again, it will be re-sent back to the failure transport
1316
1319
due to the normal :ref: `retry rules <messenger-retries-failures >`. Once the max
1317
1320
retry has been hit, the message will be discarded permanently.
@@ -1321,6 +1324,11 @@ retry has been hit, the message will be discarded permanently.
1321
1324
The option to skip a message in the ``messenger:failed:retry `` command was
1322
1325
introduced in Symfony 7.2
1323
1326
1327
+ .. versionadded :: 7.3
1328
+
1329
+ The option to filter by a message class in the ``messenger:failed:remove `` command was
1330
+ introduced in Symfony 7.3
1331
+
1324
1332
Multiple Failed Transports
1325
1333
~~~~~~~~~~~~~~~~~~~~~~~~~~
1326
1334
0 commit comments