Skip to content

Commit 1a2d155

Browse files
committed
avoid hang in grid submit
`alien.py cp ...` is not returning (after the copy).... probably related to a software-platform inconsistency (to be confirmed). Avoid this hang meanwhile, until issue is fully understood. Related to https://its.cern.ch/jira/browse/O2-4804
1 parent c62d52c commit 1a2d155

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

GRID/utils/grid_submit.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -569,9 +569,9 @@ export PATH=$PATH:$PWD
569569
chmod +x ./alien_jobscript.sh
570570
./alien_jobscript.sh
571571

572-
# just to be sure that we get the logs
573-
cp alien_log_${ALIEN_PROC_ID:-0}.txt logtmp_${ALIEN_PROC_ID:-0}.txt
574-
[ "${ALIEN_JOB_OUTPUTDIR}" ] && upload_to_Alien logtmp_${ALIEN_PROC_ID:-0}.txt ${ALIEN_JOB_OUTPUTDIR}/
572+
# just to be sure that we get the logs (temporarily disabled since the copy seems to hang sometimes)
573+
#cp alien_log_${ALIEN_PROC_ID:-0}.txt logtmp_${ALIEN_PROC_ID:-0}.txt
574+
#[ "${ALIEN_JOB_OUTPUTDIR}" ] && upload_to_Alien logtmp_${ALIEN_PROC_ID:-0}.txt ${ALIEN_JOB_OUTPUTDIR}/
575575

576576
echo "Job done"
577577

0 commit comments

Comments
 (0)