Skip to content

Instantly share code, notes, and snippets.

@orjan
Created June 9, 2023 07:17
Show Gist options
  • Save orjan/a84859e2e501d7d9fa3e75771d5b7c2c to your computer and use it in GitHub Desktop.
Save orjan/a84859e2e501d7d9fa3e75771d5b7c2c to your computer and use it in GitHub Desktop.
Dead letter requeue
#!/bin/sh
i=0
while [ $i -ne 5 ]
do
i=$(($i+1))
az-ops-sb deadletter requeue --namespace my-namespace --topic hubb --subscription hubb | tee -a log.txt
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment