Skip to content
Snippets Groups Projects
Commit 34eb4f45 authored by Julien Leduc's avatar Julien Leduc
Browse files

Should be retrieving as long as there is > 0 files retrieving

parent 008f0081
No related branches found
No related tags found
No related merge requests found
......@@ -292,7 +292,7 @@ RETRIEVED=0
echo "$(date +%s): Waiting for files to be back on disk:"
SECONDS_PASSED=0
WAIT_FOR_RETRIEVED_FILE_TIMEOUT=$((40+${NB_FILES}/5))
while test 0 -ge ${RETRIEVING}; do
while test 0 -lt ${RETRIEVING}; do
echo "$(date +%s): Waiting for files to be retrieved from tape: Seconds passed = ${SECONDS_PASSED}"
sleep 3
let SECONDS_PASSED=SECONDS_PASSED+1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment