We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dc4880 commit 0ef3e56Copy full SHA for 0ef3e56
src/zocalo/cli/dlq_purge.py
@@ -60,7 +60,7 @@ def run() -> None:
60
61
args = parser.parse_args(["--stomp-prfx=DLQ"] + sys.argv[1:])
62
if args.transport == "PikaTransport":
63
- queues = ["dlq." + a for a in args.queues]
+ queues = ["dlq." + a.removeprefix("dlq.") for a in args.queues]
64
else:
65
queues = args.queues
66
transport = workflows.transport.lookup(args.transport)()
0 commit comments