Opened 5 years ago

#346 new defect

Problem with DRYRUN and post processing jobs submitted anyway

Reported by: jgipsl Owned by: somebody
Priority: major Milestone:
Component: system Version:
Keywords: Cc:

Description

When using DRYRUN=3 at irene for experiment LMDZOR/amip_CMIP6, the main job is stopped because the post-processing job fails. As a workaround, I added a condition on DRYRUN in IGCM_post_Submit so nothing will be done if DRYRUN>1. Maybe this should be done at a finer level but at least it is now running.

function IGCM_post_Submit
{
  IGCM_debug_PushStack "IGCM_post_Submit"

  typeset listVarEnv DaysTemp

  POST_DIR=${R_BUF_KSH}

  # Do the rest only if not DRYRUN. 
  if [ $DRYRUN -le 1 ]; then
    ....
    ....
  else
     echo "DRYRUN>1 Do nothing in IGCM_post_Submit"
  fi
  IGCM_debug_PopStack "IGCM_post_Submit"
}

Change History (0)

Note: See TracTickets for help on using tickets.