Created
June 9, 2023 07:17
-
-
Save orjan/a84859e2e501d7d9fa3e75771d5b7c2c to your computer and use it in GitHub Desktop.
Dead letter requeue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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