[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-users] OnExitRemove expression evaluted to UNDEFINED(Code5 Subcode 0)



Christina,

> On_exit_remove = (ExitCode != -30) && (ExitCode != -40) && (ExitCode != -20)

You can avoid the UNDEFINED problem like this:

On_exit_remove = (ExitCode =!= UNDEFINED) && (ExitCode != -30) && (ExitCode != -40) && (ExitCode != -20)

(See section 4.1.2.3 of the Condor manual for more about "=!=")


That doesn't explain why your jobs are exiting without an ExitCode,
but maybe your ShadowLog or the StarterLog on the execute machine can
shed some light on that.

-- 
Daniel K. Forrest		Space Science and
dan.forrest@xxxxxxxxxxxxx	Engineering Center
(608) 890 - 0558		University of Wisconsin, Madison