1.0.309 - Ignore RescanFolder tasks when pausing to wait for Lidarr

#132 

This is a workaround but should resolve it by allowing the script to continue forward progress and ignore the RescanFolders task....
pull/201/head
RandomNinjaAtk 2 years ago committed by GitHub
parent 8e70a81732
commit 3f8436185b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
scriptVersion="1.0.308" scriptVersion="1.0.309"
if [ -z "$lidarrUrl" ] || [ -z "$lidarrApiKey" ]; then if [ -z "$lidarrUrl" ] || [ -z "$lidarrApiKey" ]; then
lidarrUrlBase="$(cat /config/config.xml | xq | jq -r .Config.UrlBase)" lidarrUrlBase="$(cat /config/config.xml | xq | jq -r .Config.UrlBase)"
if [ "$lidarrUrlBase" == "null" ]; then if [ "$lidarrUrlBase" == "null" ]; then
@ -1835,7 +1835,7 @@ LidarrTaskStatusCheck () {
alerted=no alerted=no
until false until false
do do
taskCount=$(curl -s "$lidarrUrl/api/v1/command?apikey=${lidarrApiKey}" | jq -r .[].status | grep -v completed | grep -v failed | wc -l) taskCount=$(curl -s "$lidarrUrl/api/v1/command?apikey=${lidarrApiKey}" | jq -r '.[] | select(.status=="started") | .name' | grep -v "RescanFolders" | wc -l)
if [ "$taskCount" -ge "1" ]; then if [ "$taskCount" -ge "1" ]; then
if [ "$alerted" == "no" ]; then if [ "$alerted" == "no" ]; then
alerted=yes alerted=yes

Loading…
Cancel
Save