Hi,
I am trying to set a timeout for a dummy task using the following code:
&declare_task('delay_deployment',
name => 'Delay Deployment',
description => 'Delay Deployment Till Publication',
timeout => "$delay_timeout", ##Pre-assigned variable.
type => 'dummytask',
start =>
@submit_file,
);
I am not sure if when linking tasks I should do:
&link_tasks('delay_deployment', 'submit_task', 'TIMEOUT');
or
&link_tasks('delay_deployment', 'submit_task', 'Done');
Either way, I tried both and whenever I launch the workflow, I get the following error:
Error:02007: no workarea found
Error:could not add files to task delay deployment
Error:Is not a valid workarea
Error:02007:No workarea found.
Also, one last note, the timeout format in the task declaration is mmddyyyyhhmm.
Any help would be greatly appreciated!
Thanks,
Ido